
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
express-router-map
Advanced tools
转换 express router 的写法
npm i express-router-map
const express = require('express');
const router = express.Router();
// 封装路由的书写方式
// 支持 use/get/post/put/delete
// 写法转变
router.get('/a', () => {});
router.get('/b', () => {});
router.get('/c', () => {});
routerMap.get({
'/a': () => {},
'/b': () => {},
'/c': () => {}
});
// 示例:
// 将 router 传入
const routerMap = new(require('express-router-map'))(router);
routerMap.use({
'/a': (req, res, next) => {req.testData = testStr; next();}
});
routerMap.get({
'/a/single': (req, res) => res.send(req.testData),
'/a/array': [
(req, res, next) => next(),
(req, res) => res.send(req.testData)
],
'/b': (req, res) => res.send(testStr)
});
const app = new express();
app.use(router);
app.listen(3000);
FAQs
router map
The npm package express-router-map receives a total of 4 weekly downloads. As such, express-router-map popularity was classified as not popular.
We found that express-router-map 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.