
Company News
/Security News
Socket Selected for OpenAI's Cybersecurity Grant Program
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.
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.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.