Socket
Socket
Sign inDemoInstall

express-mount-apps

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-mount-apps

A tiny utility for mounting multiple express apps to a single main app.


Version published
Maintainers
1
Created
Source

express-mount-apps

A tiny utility for mounting multiple express apps to a single main app.

Install:

npm install express-mount-apps

Test:

make test

How:

This functionality is already built into express:

var express = require('express'),
    app = express(),
    blog = require('blog');

app.use('/blog', blog);

However, I want to define my modules in a config file:

{
    apps: [
        {
            // name of the module to `require`
            name: 'blog',

            // route prefix for this module
            path: '/blog'
        },
        {
            name: 'auth',
            path: '/login'
        }
    ]
}

And in my express API:

var mount = require('express-mount-apps'),
    config = require('config');

mount(config.apps, function (err) {
    if (err) {
        console.log(err);
        process.exit(1);
    }
});

FAQs

Package last updated on 19 Dec 2013

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