mirror of
https://github.com/nasa/openmct.git
synced 2025-01-01 19:06:40 +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());
|
||
|
```
|