cycle-express-driver [](https://badge.fury.io/js/cycle-express-driver) [](https://david-dm.org/Alex0007/cycle-express-driver)

March 27, 2017 ยท View on GitHub

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

Contents

  1. 1Stream of requests
  2. 2Nested
  3. 3Example