apiro-db 1.0.0 → 1.0.1
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 +3 -3
- package/lib/store.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Apiro DB
|
|
2
2
|
|
|
3
3
|
A lightweight, zero-dependency, encrypted data store for Node.js.
|
|
4
4
|
|
|
@@ -20,7 +20,7 @@ Secure Store provides a simple key-value database similar to Quick.db, while rem
|
|
|
20
20
|
## Installation
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
npm install
|
|
23
|
+
npm install apiro-db
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
---
|
|
@@ -28,7 +28,7 @@ npm install secure-store
|
|
|
28
28
|
## Usage
|
|
29
29
|
|
|
30
30
|
```js
|
|
31
|
-
const { SecureStore } = require("
|
|
31
|
+
const { SecureStore } = require("apiro-db");
|
|
32
32
|
|
|
33
33
|
const db = new SecureStore({
|
|
34
34
|
file: "./data.db",
|
package/lib/store.js
CHANGED