Build apps by decoupling effects from application logic. Inspired by co, koa, redux and cycle.
The basic idea is that your main
can yield
effects to your interperter stack.
The basic building block of a koax app is a koax
. A koax
is a generator that processes an action and is composed of koax
middleware.
At the outer most level, koax apps should basically have the same form.
import {run} from 'koax'
import effects from './effects'
import main from './app'
let dispatch = run(effects, main)
Effects and main are composed of koax middleware.
import koax from 'koax'
import {fetchEffect} from '@koax/fetch'
import {awsEffect} from '@koax/aws'
let effects = koax()
.use(fetchEffect())
.use(awsEffect())
...
Koax middleware looks like koa middleware, with three params: action
, next
, and ctx
.
function (action, next, ctx) {
if (action.type === FETCH) {
return fetch(action.payoad.ur, action.payload.params)
}
return next()
}
Effects will be added to the interpreter stack, which includes default control flow middlware:
The action creators for these middleware are exposed by koax. They include: fork
, delay
, join
, and cancel
.
Now we can create our main and process it using the interpreter.
function * main (evt) {
if (evt.type === REQUEST && evt.method ==== 'get') {
return yield aws('DynamoDB', 'getItem', {Key: evt.payload, TableName: 'Stuff')
} else if (evt.type === REQUEST && evt.method ==== 'set') {
return yield aws('DynamoDB', 'setItem', {Item: evt.payload, TableName: 'Stuff'})
}
}
Putting it all together (again)...
let dispatch = run(effects, main)
dispatch({type: REQUEST, method: 'get'}).then(res => res) // results
$ npm install koax
A router example.
app.js
import koax, {run} from 'koax'
import {route, request} from '@koax/route'
import {fetchEffect} from '@koax/fetch'
import {awsEffect, aws} from '@koax/aws'
import {get} from '@koax/fetch-json'
let effects = koax()
.use(fetchEffect())
.use(awsEffect())
let main = koax()
.use(route('/pets.get', getPets))
.use(route('/pets.add', addPet))
module.exports = run(effects, main)
function * getPets ({params}) {
return yield aws('DynamoDB', 'getItem', {Key: {owner: params.owner}, TableName: 'Pets'})
}
function * addPet({param}) {
yield aws('DynamoDB', 'updateItem', {})
}
For an http server, we could do:
server.js
import app from './app'
import koa from 'koa'
import {request} from '@koax/route'
let server = koa()
server.use(function * () {
this.body = yield app(request(this.request.url, this.request.params, this.request.headers))
})
Or a lambda would look like:
index.js
import L from 'apex.js'
import 'babel-polyfill'
import app from './app'
exports.handler = L(e => app(request(e.url, e.params. e.headers)))
Returns: a koax middleware stack
middleware
- add middleware to koax app
Returns: koax app
effects
- effects processing stackmain
- main function or generator, signature:main(action)
ctx
- ctx to pass to effects and main middleware
Returns: a function that interprets data passed to it. data can be an action or a koax app.
action
- an action that middleware can process (preferably treat as immutable)next
- a function that passes execution to next middleware (canyield
orreturn
)ctx
- global shared context for all middleware
Returns: whatever your heart desires or next()
to defer to the next middleware
function * middleware (action, next, ctx) {
// return a simple value
if (action.type === 'FOO') return 'bar'
// dispatch FETCH and return its result
if (action.type === 'QUX') return yield {type: 'FETCH', payload: 'google'}
// pass execution to next middleware
return next()
}
next
is simply a function that calls the next middleware with action
and next
already bound. Since koax handles generators that are yielded or returned, each middleware can be either a function or generator and they will work as expected.
yield
dispatches actions to the interpreter. The interpreter is composed of the default control flow middleware and the effects stack.
MIT