Yet Another RESTful API framework
npm install --save ruo
const ruo = require('ruo');
async function main() {
const app = await ruo.createApplicationAsync()
app.use(ruo.getRestMiddleware())
app.listen(8088)
}
Lint
npm run lint
Test
npm test
Or
npm t
Run particular test
npm t -- -g 'some description'
Commit
git cz