vdux-preset-client
v0.2.3
Published
Pre-bundled clientside vdux store creator
Downloads
6
Readme
vdux-preset-client
Pre-bundled client-side vdux store creator
Installation
$ npm install vdux-preset-client
Usage
Instead of calling redux directly, you call vdux-present-client, like this:
import vdux from 'vdux'
import client from 'vdux-preset-client'
import thunk from 'redux-thunk'
import reducer from './reducer'
const initialState = {}
const configStore = client(thunk, ...otherMiddleware)
const store = configStore(reducer, initialState)
vdux(store, app, document.body)
That's it.
What's included
- virtex-dom - DOM rendering backend
- virtex-component - Adds components
- virtex-local - Local state for your components
- redux-multi - Lets you dispatch multiple actions by returning an array from your handlers.
- redux-ephemeral - Creates and destroys component local state for virtex-local.
License
The MIT License
Copyright © 2015, Weo.io <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.