Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
express-ls-routes
Advanced tools
Updated: supports express3 and express4!
It's a cli that lets you list the routes in your express app:
$ routes
GET /my-app/:id
POST /my-app
...
And a middleware that can expose the same information in a route in your app:
$ curl localhost:3000
[
"GET /my-app/:id",
"POST /my-app"
...
]
npm install express-ls-routes --save
Simply run:
routes
Note that this requires ./node_modules/.bin
to be in your path. If it's not, use the command:
node_modules/.bin/routes
In this case, definitely consider adding an npm scripts entry (see below).
The cli depends on your routes being listed in one file. It depends on your file being formatted like this, where your express app is called 'app' or 'server'. The route handlers can be inline functions or references to other modules.
app.get('/my-app/:id', ...)
app.post('/my-app', ...)
...
This is because the cli doesn't actually run the express app. It just parses the static js file contents to derive your app's routes.
The cli shouldn't require configuration if you use the default file locations. By default, the cli expects the routes.js
file to be located at:
app/config/routes.js
You can change this behavior by doing two things:
package.json
:"scripts": {
"routes": "routes"
}
package.json
for the routes.js
location:"config": {
"routes": "app/another/location/myRoutes.js"
}
The middleware doesn't depend on your routes.js
file being in any specific location as in the case of the cli because it actually interrogates your express app
to determine what routes have been attached to it. But, because of this, you must use this middleware after all the routes you want the middleware to know about have been attached. This will mean that you usually put the endpoint that lists routes as the last route in your app.
Pass your express app
to the middleware, and it will attach routes as json routes
on the request (req
) object:
var lsRoutes = require('express-ls-routes')
app.get('/', lsRoutes(app), function (req, res) {
res.json(200, req.routes)
})
FAQs
Cli and middleware to list routes in your express app
The npm package express-ls-routes receives a total of 25 weekly downloads. As such, express-ls-routes popularity was classified as not popular.
We found that express-ls-routes demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.