1.0.3 • Published 4 years ago

little-node-mvc v1.0.3

Weekly downloads
2
License
ISC
Repository
github
Last release
4 years ago

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