UNPKG

cra-template-node-express

Version:

You can use the template using the below command.

11 lines (7 loc) 197 B
const { Router } = require('express'); const router = Router(); router.get('/foo', (req, res) => res.send('Hello world!')); module.exports = router; if (module.hot) { module.hot.accept(); }