Skip to content
/ huex Public

Super slim and easy data storage. Like Redux\Vuex, but with ease.

License

Notifications You must be signed in to change notification settings

vssenko/huex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

huex

Super slim and easy data storage. Like Redux\Vuex, but with ease. Written just for fun, not advised for production.

Getting Started

All you need in Node

Installing

Just clone this Repository and add it as external module in your package.json file.

Running the tests

npm run test

Usage

Require Huex where you need. Then instantiate it. Then add some listeners and you are ready.

const Huex = require('huex');

const storage = Huex();

storage.on('change:hello', e => console.log('hello ' + e.value));

storage.hello = 'world';

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Last words

I know about perfomance issues, relax. This is just for fun.

About

Super slim and easy data storage. Like Redux\Vuex, but with ease.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published