https://github.com/doesdev/jao
Just an object, seriously, that's all this is
https://github.com/doesdev/jao
Last synced: about 1 month ago
JSON representation
Just an object, seriously, that's all this is
- Host: GitHub
- URL: https://github.com/doesdev/jao
- Owner: doesdev
- Created: 2018-10-10T19:20:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-10T19:22:20.000Z (over 7 years ago)
- Last Synced: 2025-02-20T15:47:49.448Z (11 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JAO
## It's litrally, just an object
### Why
I keep seeing modules popping up that claim to be the simplest way to manage
state. Personally I find none simpler than this.
### Install
```sh
$ npm install --save jao
```
### Use
One file
```js
import state from 'jao'
state.hello = world
```
Another file
```js
import state from 'jao'
console.log(state.hello)
```
### License
MIT © [Andrew Carpenter](https://github.com/doesdev)