jsbolt
v1.0.0
Published
A lightweight reimplementation of ExpressJS.
Maintainers
Readme
⚡Bolt⚡
A lighting fast and lightweight web application framework for Node.JS!
let bolt = require('./dist/index.js');
let app = new bolt();
app.get('/:test', function(req) {
console.log("HELLO!");
})
app.get('*', function(req) {
console.log(req.url);
})
app.listen(8000);