Skip to content

Commit 64028e5

Browse files
committed
Improve readme
1 parent cbfac16 commit 64028e5

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# modelate
2+
![shieldsIO](https://img.shields.io/github/issues/CodingCarlos/modelate.svg)
3+
![shieldsIO](https://img.shields.io/github/release/CodingCarlos/modelate.svg)
4+
![shieldsIO](https://img.shields.io/github/license/CodingCarlos/modelate.svg)
5+
![shieldsIO](https://img.shields.io/david/CodingCarlos/modelate.svg)
6+
[![Build Status](https://travis-ci.org/CodingCarlos/modelate.svg?branch=master)](https://travis-ci.org/CodingCarlos/modelate)
7+
28
A data modeling tool for NodeJS. It's 100% database agnostic, and 100% customizable.
39

410
# How does it work?
@@ -145,12 +151,12 @@ var geopoint = Modelate('Geopoint').set({
145151

146152
// Now, you can validate Geopoint objects ^^
147153
var myGeopoint = {
148-
name: 'Batman Symbol'
154+
name: 'Batman Symbol',
149155
coords: {
150156
lat: 26.357896,
151157
long: 127.783809
152158
}
153-
}
159+
};
154160

155161
var batman = geopoint.modelate(myGeopoint);
156162
console.log(batman);

0 commit comments

Comments
 (0)