little-node-mvc
v1.0.3
Published
a mini mvc nodejs framework
Downloads
2
Readme
little-node-mvc
a mini mvc nodejs framework
usage
const { App } = require('little-node-mvc');
const app = new App();
const port = 8080;
const hostAddress = '0.0.0.0';
app.listen(port, hostAddress, () => {
console.log(`app start at: http://${hostAddress}:${port}`);
})
访问http://0.0.0.0:8080/do_not_delete/health_check
使用方法详见little-node-mvc-template