
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
koa-simple-controller
Advanced tools
Create simple controllers for use with the Koa.js framework on Node.js
Create simple controllers for use with the Koa.js framework on Node.js
Install using npm:
npm install koa-simple-controller --save
var app = require('koa')();
var router = require('koa-router')();
// Specify path to controller directory in option passed to koa-simple-controller
// Defaults to './controller' if none specified, e.g. require('koa-simple-controller')();
var controller = require('koa-simple-controller')('./app/controller/');
// Method initalizes the controller object and attached controllers to the Koa context and controller object
app.use(controller.initialize());
// koa-router routes as example
router.get('/example', function* (next){
// Here's the Koa context
var ctx = this;
// Pass context to controller, i.e. this
ctx.controllers.test.index(ctx);
yield* next;
});
app.use(router.routes());
app.listen(3000);
Each controller is an exported object consisting of methods that serve as actions. File names are used as controller names.
// Export each set of actions
module.exports = {
index : function (ctx) {
ctx.body = 'Hello.';
},
test : function(ctx) {
ctx.body = 'Testing';
}
};
FAQs
Create simple controllers for use with the Koa.js framework on Node.js
We found that koa-simple-controller 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.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.