Organelle for `glob`-ing a directory of actions modules and mounting them to expressjs app
npm install organic-express-routesOrganelle for glob-ing a directory of actions modules and mounting them to expressjs app
{
"source": "node_modules/organic-express-routes",
"reactOn": "ExpressServer",
"pattern": "/*/.js",
"path": "path/to/routes",
"helpers": "path/to/routes-helpers",
"mount": "/myroutes",
"log": false,
"emitReady": "ExpressRoutes"
}
Should be either ExpressServer chemical with expected structure or array of chemicals where the first one is mapped as ExpressServer chemical.
Optional, if provided with directory path will load all files matching given pattern.
Optional, if provided all route handlers will be mounted to express app with given value as prefix.
Indicates the type of the chemical to be emitted once loading and mounting is complete
module.exports = function(plasma, dna, helpers) {
return {
"GET": expressHandler,
"POST": [expressHandler, ...],
"PUT /:id": expressHandler,
"DELETE /inner/url/:id": helpers["expressHandlerBuilder"](),
"OPTIONS": function(req, res, next) {
next()
}
}
}
Having directory structure
```
+ project_root
|-+ routes
|-+ api
|-+ users
|-+ _user
|- index.js
|- validate.js
|- index.js
|- index.js
|- version.js
|-+ site
|- index.js
|- about.js
* assuming every .js file contains the following source
``
module.exports = function(plasma, dna, helpers) {
return {
"GET": function(req, res, next){
console.info(req, res, next)
}
}
}
* assuming organic-express-routes has been initiated with following dna
``
{
"path": "routes/api",
"mount": "/api",
...
}
Will mount all found actions within files respecting their location relative to the dna.path` property value in the following order:
| route | file |
| ----- | ---- |
| GET /api | /api/index.js |
| GET /api/version | /api/version.js |
| GET /api/users | /api/users/index.js |
| GET /api/users/:user | /api/users/_user/index.js |
| GET /api/users/:user/validate | /api/users/_user/validate.js |