Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

express-remove-route

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-remove-route

Remove a route in express at runtime.

  • 0.1.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

express-remove-route

Delete a route in express at runtime.

Overview

I wanted the ability to dynamically control Express routing but was not able to delete a route at runtime. This module solves that problem.

Installation

npm install express-remove-route

Usage

var removeRoute = require('express-remove-route');

var app = express();
var router = express.Router();

router.get('/remove/me', function(res, res) {
    res.send('I should not be here');
});

app.use('/foo', router);

removeRoute(app, '/foo/remove/me');

Note that the full path is supplied to removeRoute not just its local path from within the router.

Caveat emptor

This module has been tested against Express 4.13.3. In theory, it should work with all of 4.x.

However, it will definitely NOT work with 3.x.

Also, it makes use of undocumented private Express methods and data structures that may be subject to change.

Keywords

FAQs

Package last updated on 08 Nov 2015

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