Skip to content

Releases: BackendStack21/fast-gateway

Docs & deps update

20 Jun 05:02
50ece88
Compare
Choose a tag to compare

Improving docs.
Updating dependencies.

By default populate content-length if missing

19 Jun 08:31
c891405
Compare
Choose a tag to compare
v1.2.0

Merge pull request #3 from jkyberneees/populate-content-length-if-mis…

Updating fast-proxy dep

18 Jun 13:34
Compare
Choose a tag to compare
v1.1.2

updating "fast-proxy": "^1.1.2"

Dependency updates

18 Jun 11:08
Compare
Choose a tag to compare

Updating deps.

Gateway level cache

29 May 08:37
Compare
Choose a tag to compare

Supporting gateway level cache:

// cache middleware
const cache = require('http-cache-middleware')()
// enable http cache middleware
const gateway = require('fast-gateway')
const server = gateway({
  middlewares: [cache],
  routes: [...]
})