abstract-express-router
v1.6.0
Published
library to automagically create an express router-object with basic validation for params based on a javascript object
Downloads
5
Maintainers
Readme
abstract-express-router
An framework for express.js which abstracts much of the syntax needed for creating an express-router while keeping the core-functionality. This allows for a quick and clean creation of routers in a single file without writing repetitive code. It also provides simple validation functionality for path and query parameters and for the body.
Installation
npm install abstract-express-router
Also make sure that you have Node.js 10 or newer in order to use it.
Documentation
The main functionality is the creation of a router. For this it is necessary to create a Javascript object reflecting the structure of your api via string - object - pairs. Certain key names are restricted as they refer to specific functionality, but every other key will resolve into a seperate router instance with anything placed into the object mapped to its key value. It is possible to have multiple url-segments in a single key and it is also possible to use path parameters (e.g. "objects/:id").
Reserved Keys
The reserved keys are the following:
Action verbs: get, post, put, delete
Using an action verb will cause the creation of an endpoint. Each endpoint has the required key controller and allows for middleware and body, query, params
Controller
Controllers are required keys for every endpoint. They have to be a function and to terminate the request.
Middleware
Middleware is defined as an array of functions. They can be added in any layer.
Static
Static is a shorthand for express static routing and requires the source path for the static files as value. This keyword can be used in any layer except endpoints.
Validation
body, query and params allow for verification. body and query are restricted to endpoints, but params can be used on any layer. Validation can be done either by using one of the provided validators, or by passing a evaluation function which returns a boolean. It is possible to have multiple layers of objects for the validation. A failed validation for params will cause express to skip to the next router, while a failed validation for query and body terminates the request with error code 400.
Validators
This library provides some convenience functions for triggering the validation:
regexpValidator
This Validator will evaluate the value against the provided regular expression.
const number = regexpValidator(/^[a-z]{0,25}$/)
oneOfValidator
This Validator will evaluate whether the value is part of the provided list.
const repository = oneOfValidator(['test', 'foo'])
Order of application
- Validation
- Middleware
- Action Verbs
- Subrouters
- Static
- CatchAll
Configuration (optional)
logger
It is possible to pass a function in the configuration object. If this is done any logging will be passed into this function, split into the loglevel and the message:
{
level: number
message: string
}
logLevel
If no logger function is configured, all logging will be prefixed with the application name, filtered by log level and the output send to console.log.
This library supports 4 log levels: 0
- silent, 1
- error, 2
- warning, 3
- info
default: 3
useCatchAll
Whether to use the default catchAll returning a 404 error.
default: true
bodyParserOptions
Configuration object to be passed into the json/urlEncoded bodyparser.
Example
import {createRouter, oneOfValidator, regexpValidator } from 'abstract-express-router'
import { createServer } from 'http'
const testMiddleware = testMiddleware2 = testMiddleware3 = (req, res, next) => {
// do whatever
next()
}
// different types of validators
const number = regexpValidator(/^[a-z]{0,25}$/)
const repository = oneOfValidator(['test', 'foo'])
const id = regexpValidator(/^[0-9]{0,10}$/)
const report = (value) => value === 'report'
// handler
const handler1 = handler2 = (req, res) => res.status(200).send('hello')
const api = {
middleware: [testMiddleware],
api: {
endpoint1: {
middleware: [testMiddleware2],
post: {
body: { branch, report, repository },
controller: handler1,
},
},
endpoint2: {
':id': {
params: { id },
put: {
middleware: [testMiddleware3],
body: {
report,
base: branch,
repository,
},
controller: handler2,
},
},
},
},
static: './path/of/static/content/'
}
const settings = {
logger,
logLevel: 2,
useCatchAll: false
}
const app = createRouter(api, settings)
app.use(*, (req, res) => res.status(404).send('No luck here, try elsewhere!))
const server = createServer(app)
server.listen(8080)
Changelog
10.04.2019: added static router