/cycle-express-driver

Express.js driver for Cycle.js

Primary LanguageTypeScript

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