0.1.0 • Published 8 years ago

fluxury-general-store v0.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

general-store

general-store is a general purpose state management library based on Facebook's Flux architecture.

It is built on top of fluxury and functionfoundry.

Similar to flux it does not specify data fetching. This solution may be used with REST, SOAP or any other HTTP based protocol that your application demands. You may use XMLHTTPRequest, jQuery, fetch or any other mechanism that can asynchronously deliver data to a browser.

Getting Started

Option A) Install from npm.

$ npm install --save fluxury-general-store

Require into your project.

var createStore = require('fluxury-general-store') // Node.js / browserify / webpack
// or
import createStore from 'fluxury-general-store' // ES6 syntax

Option B) Install from dist folder.

<html>
  <head>
    <script src="/path/to/general-store.js"><script>
    ...

Basic Usage

var store = createStore()
store.set({ key: 'value' })
store.get('key')

store.set({ investments: [{ name: 'FundA' }, { name: 'FundB' }]})
store.setFilter({
  table: 'investments',
  field: 'name',
  op: 'eq',
  value: 'FundA'}
)
store.get('investments') // => [{ name: 'FundA' }]
0.1.0

8 years ago