Super slim and easy data storage. Like Redux\Vuex, but with ease. Written just for fun, not advised for production.
All you need in Node
Just clone this Repository and add it as external module in your package.json file.
npm run test
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';
This project is licensed under the MIT License - see the LICENSE.md file for details
I know about perfomance issues, relax. This is just for fun.