Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
express-routes-mapper
Advanced tools
This is a example for a simple rest API.
$ npm i -S express-routes-mapper
Create your routes file:
// es6
const routes = {
'POST /user': 'UserController.create'
}
export default routes;
//es5
module.exports = {
'POST /user': 'UserController.create'
}
Every post request to your server to route '/user' will call the function 'create' on the 'UserController'.
Create a file named UserController.js
//es6
export default class UserController {
create (req,res) {
res.send('created a User with es6');
}
}
//es5
module.exports = {
'create': function(req,res){
res.send('created a User with es5');
}
}
I assume you have a folder structure like this, but it can be adapted to any folder structure.
.
+-- src
| +-- config
| | +-- routes.js
| |
| +-- controllers
| | +-- UserController.js
| |
| +-- models
| |
| app.js
|
package.json
Your app.js could look a bit like this:
The magic happens here:
import routes from './config/routes';
the file where all the routes are mappedimport route from 'express-routes-mapper';
the package that makes the mapping possibleapp.use('/', route(routes));
tell express to use the mapped routes
and herevar routes = require('./config/routes');
the file where all the routes are mappedvar route = require('express-routes-mapper');
the package that makes the mapping possibleapp.use('/', route(routes));
tell express to use the mapped routes//es6
import express from 'express';
import http from 'http';
import routes from './config/routes';
import route from 'express-routes-mapper';
const app = express();
const server = http.Server(app);
const port = 4444;
app.use('/', route(routes));
server.listen(port, function() {
console.log('There we go ♕');
console.log(`Gladly listening on http://127.0.0.1:${port}`);
});
//es5
var express = require('express');
var http = require('http');
var routes = require('./config/routes');
var route = require('express-routes-mapper');
var app = express();
var server = http.Server(app);
var port = 4444;
app.use('/', route(routes));
server.listen(port, function(){
console.log('There we go ♕');
console.log('Gladly listening on http://127.0.0.1:' + port);
})
FAQs
a small mapper for express routes
The npm package express-routes-mapper receives a total of 0 weekly downloads. As such, express-routes-mapper popularity was classified as not popular.
We found that express-routes-mapper 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.