Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deepred5/little-node-mvc
a mini mvc nodejs framework
https://github.com/deepred5/little-node-mvc
Last synced: 7 days ago
JSON representation
a mini mvc nodejs framework
- Host: GitHub
- URL: https://github.com/deepred5/little-node-mvc
- Owner: deepred5
- Created: 2020-07-17T03:24:07.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T23:00:10.000Z (almost 2 years ago)
- Last Synced: 2024-04-16T15:43:29.066Z (7 months ago)
- Language: JavaScript
- Size: 102 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# little-node-mvc
a mini mvc nodejs framework# usage
```javascript
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](https://github.com/deepred5/little-node-mvc-template)