You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-5Lines changed: 11 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,17 @@
7
7
8
8
A data modeling tool for NodeJS. It's 100% database agnostic, and 100% customizable.
9
9
10
+
# How to install
11
+
Use NPM to install the package:
12
+
```
13
+
npm install modelate --save
14
+
```
15
+
10
16
# How does it work?
11
17
Create a model, and turn your objects into that model.
12
18
13
19
```javascript
14
-
var Modelate =require('./index');
20
+
var Modelate =require('modelate');
15
21
16
22
var model = {
17
23
name: {
@@ -181,14 +187,14 @@ And now you can run tests ^^
181
187
## Test coverage:
182
188
Master version might not have the last test updates. Check out the `develop` branch to see the last updates. Also, the actual test coverage (in `develop` branch) is fully referenced in #3 issue.
0 commit comments