mirror of
https://github.com/nasa/openmct.git
synced 2024-12-27 00:31:06 +00:00
9 lines
395 B
Markdown
9 lines
395 B
Markdown
# Local Storage Plugin
|
|
Provides persistence of user-created objects in browser Local Storage. Objects persisted in this way will only be
|
|
available from the browser and machine on which they were persisted. For shared persistence, consider the
|
|
[Elasticsearch](../elastic/) and [CouchDB](../couch/) persistence plugins.
|
|
|
|
## Installation
|
|
```js
|
|
openmct.install(openmct.plugins.LocalStorage());
|
|
``` |