
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
koa-version
Advanced tools
Mounting app by version to different router.
npm i koa-version --save
version(semantic_version, route, app);
semantic_version: use semver.route: routing function, app as parameter only.app: koa application.app.js
var koa = require('koa');
var version = require('koa-version');
var v1Router = require('./v1Router');
var v2Router = require('./v2Router');
var app = koa();
app.use(version('1', v1Router, app));
app.use(version('2', v2Router, app));
app.listen(3000);
v1Router.js
var route = require('koa-route');
module.exports = function (app) {
app.use(route.get('/hello', function* () {
this.body = 'v1-hello';
}));
app.use(route.get('/world', function* () {
this.body = 'v1-world';
}));
};
v2Router.js
var route = require('koa-route');
module.exports = function (app) {
app.use(route.get('/hello', function* () {
this.body = 'v2-hello';
}));
app.use(route.get('/world', function* () {
this.body = 'v2-world';
}));
};
npm test
MIT
FAQs
Mounting app by version to different router
We found that koa-version demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.