Socket
Socket
Sign inDemoInstall

express-routes-mapper

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-routes-mapper

a small mapper for express routes


Version published
Weekly downloads
337
increased by5.97%
Maintainers
1
Weekly downloads
 
Created
Source

express-routes-mapper

a simple package to map your routes for your expressjs application

Getting started

This is a example for a simple rest API.

1.) npm install

$ npm i -S express-routes-mapper

2.) mapped routes

Create your routes file:

// es6
export default const routes = {

  'POST /user': 'UserController.create'

}

//es5
module.exports.routes = {

  'POST /user': 'UserController.create'

}

Every post request to your server to route '/user' will call the function 'create' on the 'UserController'.

3.) the controller

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');

  }

}

4.) tell express.js app to use our routes

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 mapped
  • import route from 'express-routes-mapper'; the package that makes the mapping possible
  • app.use('/', route(routes)); tell express to use the mapped routes
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 = process.env.PORT || config.port;

app.use('/', route(routes));

server.listen(port, function() {
  console.log('There we go ♕');
  console.log(`Gladly listening on http://127.0.0.1:${port}`);
});

Keywords

FAQs

Package last updated on 07 Mar 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc