2016-05-10 23:23:33 +07:00
|
|
|
# choo [![stability][0]][1]
|
|
|
|
|
[![npm version][2]][3] [![build status][4]][5] [![test coverage][6]][7]
|
|
|
|
|
[![downloads][8]][9] [![js-standard-style][10]][11]
|
|
|
|
|
|
2016-05-13 12:49:22 +07:00
|
|
|
:steam_locomotive::train::train::train::train::train: - _The little framework
|
|
|
|
|
that could._
|
|
|
|
|
|
2016-05-10 23:23:33 +07:00
|
|
|
A framework for creating sturdy web applications. Built on years of industry
|
2016-05-13 12:24:51 +07:00
|
|
|
experience it distills the essence of functional architectures into a
|
2016-05-10 23:23:33 +07:00
|
|
|
productive package.
|
|
|
|
|
|
|
|
|
|
## Features
|
2016-05-11 14:07:10 +07:00
|
|
|
- __minimal size:__ weighing under `8kb`, `choo` is a tiny little framework
|
2016-05-10 23:23:33 +07:00
|
|
|
- __single state:__ immutable single state helps reason about changes
|
|
|
|
|
- __minimal tooling:__ built for the cutting edge `browserify` compiler
|
|
|
|
|
- __transparent side effects:__ using "effects" and "subscriptions" brings
|
|
|
|
|
clarity to IO
|
|
|
|
|
- __omakase:__ composed out of a balanced selection of open source packages
|
|
|
|
|
- __idempotent:__ renders seemlessly in both Node and browsers
|
|
|
|
|
- __very cute:__ choo choo!
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
```js
|
|
|
|
|
const choo = require('choo')
|
|
|
|
|
|
|
|
|
|
const app = choo()
|
|
|
|
|
app.model('title', {
|
2016-05-11 15:26:27 +07:00
|
|
|
state: {
|
|
|
|
|
title: 'my-demo-app'
|
|
|
|
|
},
|
2016-05-10 23:23:33 +07:00
|
|
|
reducers: {
|
2016-05-11 13:52:31 +07:00
|
|
|
'update': (action, state) => ({ title: action.payload })
|
2016-05-10 23:23:33 +07:00
|
|
|
},
|
|
|
|
|
effects: {
|
2016-05-11 14:56:18 +07:00
|
|
|
'update': (action, state, send) => (document.title = action.payload)
|
2016-05-10 23:23:33 +07:00
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
2016-05-11 13:52:31 +07:00
|
|
|
const mainView = (params, state, send) => choo.view`
|
2016-05-10 23:23:33 +07:00
|
|
|
<main class="app">
|
|
|
|
|
<h1>${state.title}</h1>
|
|
|
|
|
<label>Set the title</label>
|
|
|
|
|
<input
|
|
|
|
|
type="text"
|
|
|
|
|
placeholder=${state.title}
|
|
|
|
|
oninput=${(e) => send('title:update', { payload: e.target.value })}>
|
|
|
|
|
</main>
|
2016-05-11 13:52:31 +07:00
|
|
|
`
|
2016-05-10 23:23:33 +07:00
|
|
|
|
|
|
|
|
app.router((route) => [
|
|
|
|
|
route('/', mainView)
|
|
|
|
|
])
|
|
|
|
|
|
2016-05-11 14:56:18 +07:00
|
|
|
const tree = app.start()
|
|
|
|
|
document.body.appendChild(tree)
|
2016-05-10 23:23:33 +07:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Concepts
|
2016-05-11 15:26:27 +07:00
|
|
|
- __state:__ a single object that contains all application state, should only
|
|
|
|
|
ever be modified by `reducers`
|
|
|
|
|
- __reducers:__ syncronous functions that modify `state`
|
2016-05-13 12:24:51 +07:00
|
|
|
- __effects:__ asyncronous functions that perform IO. Effects can call
|
|
|
|
|
`send()` when done to handle results
|
2016-05-11 15:26:27 +07:00
|
|
|
- __subscriptions:__ streams of data that can either be written to or read from
|
2016-05-15 18:02:03 +07:00
|
|
|
```txt
|
2016-05-15 18:08:07 +07:00
|
|
|
┌─────────────────┐
|
|
|
|
|
┌─▶│ Subscriptions │──┐
|
|
|
|
|
│ └─────────────────┘ │
|
|
|
|
|
│ ┌─────────────────┐ │
|
|
|
|
|
├─▶│ Effects │──┤
|
|
|
|
|
│ └─────────────────┘ │
|
|
|
|
|
┌──────────┐ │ ┌──────────┐ │ ┌───────┐ ┌──────┐
|
|
|
|
|
│ Reducers │◀────┴──────│ Models │◀────┴─────│ DOM │◀──│ User │
|
|
|
|
|
└──────────┘ Action └──────────┘ Action └───────┘ └──────┘
|
|
|
|
|
│ ┌────────┐ ┌───────┐ ▲
|
|
|
|
|
└───────────▶│ Router │──▶│ Views │──────────┘
|
|
|
|
|
State └────────┘ └───────┘ DOM tree
|
2016-05-15 18:02:03 +07:00
|
|
|
```
|
2016-05-10 23:23:33 +07:00
|
|
|
|
2016-05-13 12:24:51 +07:00
|
|
|
## Side effects
|
|
|
|
|
### HTTP
|
|
|
|
|
`choo` ships with a built-in [`http` module](https://github.com/Raynos/xhr)
|
|
|
|
|
that weighs only `2.4kb`:
|
|
|
|
|
```js
|
|
|
|
|
const http = require('choo/http')
|
|
|
|
|
|
|
|
|
|
// GET JSON
|
|
|
|
|
http.get('/my-endpoint', { json: true }, function (err, res, body) {
|
|
|
|
|
if (err) throw err
|
|
|
|
|
if (res.statusCode !== 200 || !body) throw new Error('something went wrong')
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// POST JSON
|
|
|
|
|
const body = { foo: 'bar' }
|
|
|
|
|
http.post('/my-endpoint', { json: body }, function (err, res, body) {
|
|
|
|
|
if (err) throw err
|
|
|
|
|
if (res.statusCode !== 200 || !body) throw new Error('something went wrong')
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// DELETE
|
|
|
|
|
http.del('/my-endpoint', function (err, res) {
|
|
|
|
|
if (err) throw err
|
|
|
|
|
if (res.statusCode !== 200) throw new Error('something went wrong')
|
|
|
|
|
})
|
|
|
|
|
```
|
|
|
|
|
Note that `http` only runs in the browser to prevent accidental requests when
|
|
|
|
|
rendering in Node. For more details view the [`raynos/xhr`
|
|
|
|
|
documentation](https://github.com/Raynos/xhr).
|
|
|
|
|
|
2016-05-10 23:23:33 +07:00
|
|
|
## API
|
2016-05-11 15:26:27 +07:00
|
|
|
### app = choo()
|
|
|
|
|
Create a new `choo` app
|
|
|
|
|
|
|
|
|
|
### app.model(name?, obj)
|
|
|
|
|
Create a new model. Models modify data and perform IO. Obj takes the following
|
|
|
|
|
arguments:
|
|
|
|
|
- __state:__ object. Key value store of initial values
|
|
|
|
|
- __reducers:__ object. Syncronous functions that modify state. Each function
|
2016-05-12 12:59:27 +07:00
|
|
|
has a signature of `(action, state)`
|
2016-05-11 15:26:27 +07:00
|
|
|
- __effects:__ object. Asyncronous functions that perform IO. Each function has
|
|
|
|
|
a signature of `(action, state, send)` where `send` is a reference to
|
|
|
|
|
`app.send()`
|
|
|
|
|
|
|
|
|
|
If a `name` string is passed as a first argument, `reducers` and `signatures`
|
|
|
|
|
will be prefixed by the name. So if name is "user" and a reducer called
|
|
|
|
|
"update" is registered, it would be accessed as `'user:update'` in `send()`.
|
|
|
|
|
|
|
|
|
|
### choo.view\`html\`
|
|
|
|
|
Tagged template string HTML builder. See
|
|
|
|
|
[`yo-yo`](https://github.com/maxogden/yo-yo) for full documentation. Views
|
|
|
|
|
should be passed to `app.router()`
|
|
|
|
|
|
|
|
|
|
### app.router(params, state, send)
|
|
|
|
|
Creates a new router. See
|
|
|
|
|
[`sheet-router`](https://github.com/yoshuawuyts/sheet-router) for full
|
|
|
|
|
documentation. Registered views have a signature of `(params, state, send)`,
|
|
|
|
|
where `params` is URI partials.
|
|
|
|
|
|
|
|
|
|
### tree = app.start()
|
|
|
|
|
Start the application. Returns a DOM element that can be mounted using
|
|
|
|
|
`document.body.appendChild()`.
|
2016-05-10 23:23:33 +07:00
|
|
|
|
2016-05-11 13:51:17 +07:00
|
|
|
## Packages used
|
|
|
|
|
- __views:__ [`yo-yo`](https://github.com/maxogden/yo-yo)
|
|
|
|
|
- __models:__ [`send-action`](https://github.com/sethvincent/send-action),
|
|
|
|
|
[`xtend`](https://github.com/raynos/xtend)
|
|
|
|
|
- __routes:__ [`sheet-router`](https://github.com/yoshuawuyts/sheet-router)
|
2016-05-13 12:24:51 +07:00
|
|
|
- __http:__ [`xhr`](https://github.com/Raynos/xhr)
|
2016-05-11 13:51:17 +07:00
|
|
|
|
2016-05-11 15:26:27 +07:00
|
|
|
## Optimizing
|
|
|
|
|
To bring down file size, consider running the following `browserify`
|
|
|
|
|
transforms:
|
|
|
|
|
- [unassertify](https://github.com/twada/unassertify) - remove `assert()`
|
|
|
|
|
statements which reduces file size. Use as a `--global` transform
|
|
|
|
|
- [varify](https://github.com/thlorenz/varify) - replace `const` with `var`
|
|
|
|
|
statements. Use as a `--global` transform
|
|
|
|
|
- [uglifyify](https://github.com/hughsk/uglifyify) - minify your code using
|
|
|
|
|
UglifyJS2. Use as a `--global` transform
|
|
|
|
|
|
|
|
|
|
## Packages that work well together
|
|
|
|
|
- [tachyons](https://github.com/tachyons-css/tachyons) - functional CSS for
|
|
|
|
|
humans
|
2016-05-13 12:24:51 +07:00
|
|
|
- [sheetify](https://github.com/stackcss/sheetify) - modular CSS bundler for
|
|
|
|
|
browserify
|
2016-05-11 15:26:27 +07:00
|
|
|
|
2016-05-10 23:23:33 +07:00
|
|
|
## Installation
|
|
|
|
|
```sh
|
|
|
|
|
$ npm install choo
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
[MIT](https://tldrlegal.com/license/mit-license)
|
|
|
|
|
|
|
|
|
|
[0]: https://img.shields.io/badge/stability-experimental-orange.svg?style=flat-square
|
|
|
|
|
[1]: https://nodejs.org/api/documentation.html#documentation_stability_index
|
|
|
|
|
[2]: https://img.shields.io/npm/v/choo.svg?style=flat-square
|
|
|
|
|
[3]: https://npmjs.org/package/choo
|
|
|
|
|
[4]: https://img.shields.io/travis/yoshuawuyts/choo/master.svg?style=flat-square
|
|
|
|
|
[5]: https://travis-ci.org/yoshuawuyts/choo
|
|
|
|
|
[6]: https://img.shields.io/codecov/c/github/yoshuawuyts/choo/master.svg?style=flat-square
|
|
|
|
|
[7]: https://codecov.io/github/yoshuawuyts/choo
|
|
|
|
|
[8]: http://img.shields.io/npm/dm/choo.svg?style=flat-square
|
|
|
|
|
[9]: https://npmjs.org/package/choo
|
|
|
|
|
[10]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square
|
|
|
|
|
[11]: https://github.com/feross/standard
|