brackets-memory-db 0.1.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# brackets-memory-db
|
|
2
|
+
|
|
3
|
+
This implementation of the [`CrudInterface`](https://drarig29.github.io/brackets-docs/reference/manager/interfaces/CrudInterface.html) allows you to store the database directly in memory.
|
|
4
|
+
|
|
5
|
+
This is a good choice if you want to have both the [manager](https://github.com/Drarig29/brackets-manager.js) and the [viewer](https://github.com/Drarig29/brackets-viewer.js) to run in the browser.
|
|
6
|
+
|
|
7
|
+
You can also use it to do all the logic in memory and persist the new state at the end of an update, for example.
|
|
8
|
+
|
|
9
|
+
It is used in the documentation here: https://drarig29.github.io/brackets-docs/getting-started/#using-the-viewer
|