yodata 0.0.1 → 0.0.3
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/package.json +6 -2
package/README.md
CHANGED
@@ -7,14 +7,14 @@
|
|
7
7
|
# install y0data
|
8
8
|
|
9
9
|
``` js
|
10
|
-
npm install
|
10
|
+
npm install yodata
|
11
11
|
```
|
12
12
|
|
13
13
|
# Connect Database
|
14
14
|
|
15
15
|
``` js
|
16
|
-
let
|
17
|
-
let db = new
|
16
|
+
let yodata = require('yodata')
|
17
|
+
let db = new yodata('DATA BASE ID')
|
18
18
|
db.connect();
|
19
19
|
```
|
20
20
|
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "yodata",
|
3
3
|
"description": "Y0data online services to save your data",
|
4
|
-
"version": "0.0.
|
4
|
+
"version": "0.0.3",
|
5
5
|
"main": "data/plugin.js",
|
6
6
|
"dependencies": {
|
7
7
|
"events": "^3.3.0",
|
@@ -13,7 +13,11 @@
|
|
13
13
|
"data",
|
14
14
|
"y0data"
|
15
15
|
],
|
16
|
+
"repository": {
|
17
|
+
"type": "git",
|
18
|
+
"url": "git://github.com/yousefgog177/yodata"
|
19
|
+
},
|
16
20
|
"author": "Yousuf",
|
17
|
-
"license": "
|
21
|
+
"license": "MIT",
|
18
22
|
"readmeFilename": "README.md"
|
19
23
|
}
|