redux would be a classic example with a separate store and you just need to decide when to save. personally I would use the classis dedup so the person stops writing and you save.
so you have your own buffered store. you could in theory also put it into localStorage and just add a list buffer.push([<action>, state]);
or you put it in the sessionStorage. lots and lots of possibilities :)
j
stuff ;)
redux would be a classic example with a separate store and you just need to decide when to save. personally I would use the classis dedup so the person stops writing and you save.
so you have your own buffered store. you could in theory also put it into localStorage and just add a list buffer.push([<action>, state]);
or you put it in the sessionStorage. lots and lots of possibilities :)