Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 767 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 767 Bytes

cycle-express-driver npm version dependencies Status

Express.js driver for cycle.js forked from here

Stream of requests

router.get('/').map(({id}) => {
  return {id, send: 'Hello, world'}
})

Nested

const nested = router.route('/api')
nested.post('/users').map((req) => {})

Example

Check out the minimal working sample at Alex0007/cycle-express-hello-world