Is your feature request related to a problem? Please describe.
There are from time to time things a user will do which need to be persisted in a transient (not forever) fashion. An option today is localStorage. We already use that for the AuthenticationToken, and the Connections app is using it to remember nodes to be connected with a relationship topic.
The issue is that localStorage is visible to other applications in a browser. It is leaky.
Describe the solution you'd like
For most anything an App might need other than authentication token, a transient clipboard-like storage would be useful.
We can implement that as a database-less Feathers.js Service
Is your feature request related to a problem? Please describe. There are from time to time things a user will do which need to be persisted in a transient (not forever) fashion. An option today is localStorage. We already use that for the AuthenticationToken, and the Connections app is using it to remember nodes to be connected with a relationship topic. The issue is that localStorage is visible to other applications in a browser. It is leaky. Describe the solution you'd like For most anything an App might need other than authentication token, a transient clipboard-like storage would be useful.
We can implement that as a database-less Feathers.js Service