Create Express middleware using Futures from Fluture.
Allows for the definition of pure functions to be used as Express middleware. This has benefits for testing and developer sanity. Another benefit of this particular approach, where every middleware is wrapped individually, is that it plays nicely with existing Express middleware, and they can be used interchangably.
$ npm install --save fluture-express
On Node 12 and up, this module can be loaded directly with import
or
require
. On Node versions below 12, require
or the esm-loader can
be used.
You can load the EcmaScript module from various content delivery networks:
// index.js
const {dispatcher} = require ('fluture-express');
const app = require ('express') ();
const dispatch = dispatcher ('./actions');
app.use (dispatch ('welcome'));
app.listen (3000);
// actions/welcome.js
const {Json} = require ('fluture-express');
const Future = require ('fluture');
module.exports = locals => req => Future.go (function* () {
const user = yield locals.database.find ('sessions', locals.session.id);
return withStatus (418) (Json ({welcome: user.name}));
});
For a more in-depth example, see the example
directory.
The Express Request object.
The Express Response object with a locals
property of type a
.
Fluture-Express mutates the response object for you, based on a specification of what the response should be. This specification is captured by the Response sum-type.
The Response sum type encoded with daggy. You probably don't need to use this directly.
data Response a b = Respond (Array Head) (Body a)
| Next b
The Head sum type encoded with daggy. You probably don't need to use this directly.
data Head = Status Number
| Type String
| Location String
| Links (StrMap String)
| Cookie String String Object
| ClearCookie String Object
| HeaderPart String String
| Header String String
The Body sum type encoded with daggy. You probably don't need to use this directly.
data Body a = None
| Send Any
| Json JsonValue
| Stream (Future a Readable)
| Render String Object
Creates a streamed response given a mime type and a Future that produces a Readable Stream when consumed. The Future is expected to produce a new Stream every time it's consumed, or if it can't, reject with a value that your Express error handler can handle.
Uses a Content-Type of application/octet-stream
unless overridden by
withType
, withHeader
,
or withoutHeader
.
Indicates a textual response.
Uses a Content-Type of text/plain
unless overridden by
withType
, withHeader
,
or withoutHeader
.
Indicates a JSON response.
Uses a Content-Type of application/json
unless overridden by
withType
, withHeader
.
Indicates a response to be rendered using a template. The first argument
is the path to the template file, and the second is the data to inject into
the template. This uses Express' render method under the hood, so you can
configure it globally with app.set ('view engine', engine)
and
app.set ('views', path)
.
Indicates a redirection. The first argument will be the response status code, and the second will be the value of the Location header.
Unless overridden by withStatus
, the status code will be
set to 301 (Moved Permanently).
Indicates an empty response. The response status will be set to 204, and no response body or Content-Type header will be sent.
Indicates that this middleware does not form a response. The supplied value
will be assigned to res.locals
and the next middleware will be called.
Configure the status code by setting up a call to res.status
.
Configure the Content-Type by setting up a call to res.type
.
Configure the Location header by setting up a call to res.location
.
Configure the Link header by setting up a call to res.links
.
Configure the Set-Cookie header by setting up a call to res.cookie
.
Configure the Set-Cookie header by setting up a call to
res.clearCookie
.
Append to a header by setting up a call to res.append
.
Configure a header by setting up a call to res.set
.
Removes a header from the Response. Also removes headers that would be
set by functions like withType
. For example:
> withoutHeader ('Content-Type') (withType ('json') (Empty))
Empty
middleware :: (b -> Req -> Future a (Response a c)) -> (Req, Res b, (a -> Undefined)) -> Undefined
Converts an action to an Express middleware.
Takes a function that returns a Future of a Response, and returns
an Express middleware that uses the returned structure to make the
appropriate mutations to the res
.
If the Future rejects, the rejection reason is passed into next
for
further error handling with Express.
Creates middleware that uses the export from the given file in the given directory as an "action".
It takes the file in two steps for convenience. You are encouraged to use the first parameter to set up a sub-directory where all your actions live.
The exported value should be a function of the same signature as given to
middleware
.