-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathusage-persistant-state.js
38 lines (30 loc) · 1.13 KB
/
usage-persistant-state.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// persistent states for NodeJS:
//
// 1. Setup Component to use its "storage" add-on
// 2. Define your component
// 3. Call myComponent.render() to get the lastest saved state
// 4. Now you're ready - calling setState saves the state to persistent storage :)
//
// attach the storage add-on to Component, so it'll get used
const { Component, storage } = require('../dist/index.min.js');
Component.storage = storage
// create our component
const Counter = new Component({ count: 0 });
// define a name for the store in which to keep the component state
Counter.store = "Counter"
// then get the saved state from localStorage
Counter.render()
// ...now we're ready - any state updates will be saved to local storage..
// update the state: add to the total count
Counter.setState({ count: Counter.state.count + 1 })
// now let's see the count total
console.log(Counter.state);
// Re-run this script lots of times - the counter total will increase each time:
//
// Command to run:
//
// node -r node-localstorage/register examples/usage-persistant-state.js
//
// NOTE:
//
// The `node-localstorage` module must be installed as a dev dependency!