perfusorius-js
v2.0.4
Published
Lightweight RESTful API server for NodeJS
Maintainers
Readme
PerfusoriusJS for restful APIs
Lightweight RESTful API framework for NodeJS.
Configuration variables
name[string] Currently not in useserverName[string] Shows in 'server' headerenableSecurityHeaders[boolean], Default trueport[number] API server port`cors[object] Object where you can set the cors information likemaxAge, origin, credentials
Route
method[string] Request methodpath[string] Path name, variables in path should start with colon :(ex. /path/:id)middleware[function || array of functions] Single middleware function or array of a middleware functionsservice[function] Route controllerversion[string] Route version (ex.'1.*.*')
Without the "version" key is the route version 1.0.0 and it is accessible from v1/ before the route path ( /v1/here/is/route/path )
Installing a PerfusoriusJS
npm install perfusorius-js --save