Express.js driver for cycle.js forked from here
router.get('/').map(({id}) => {
return {id, send: 'Hello, world'}
})
const nested = router.route('/api')
nested.post('/users').map((req) => {})
Check out the minimal working sample at Alex0007/cycle-express-hello-world