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
`mongolab-data-api` is a node.js module designed to allow you to access [MongoLab's Data API](http://docs.mongolab.com/data-api/#reference) with minimal overhead.
3
+
`mongolab-data-api` is a node.js module designed to allow you to access [mLab's Data API](http://docs.mlab.com/data-api/#reference) with minimal overhead.
4
4
5
5
I designed mongolab-data-api so the only documentation you need, in addition to the Data API specification, is how to install node, how to install the module, and how to make a call.
6
6
@@ -20,15 +20,15 @@ If you don't have or don't want to use npm:
20
20
To require the library and initialize it with your account API key:
21
21
22
22
```javascript
23
-
varmongolab=require('mongolab-data-api')('<Your Api Key Here>');
23
+
varmLab=require('mongolab-data-api')('<Your Api Key Here>');
### [From the official MongoLab Data API documentation](http://docs.mongolab.com/connecting/#methods):
232
+
### [From the official mLab Data API documentation](http://docs.mlab.com/connecting/#methods):
233
233
234
-
> MongoLab databases can be accessed by your application code in two ways.
234
+
> mLab databases can be accessed by your application code in two ways.
235
235
236
236
> The first method - the one we strongly recommend - is to connect using one of the MongoDB drivers (as described above). You do not need to use our API if you use the driver. In fact, using a driver provides better performance, better security, and more functionality.
237
237
238
-
> The second method is to connect via MongoLab’s RESTful Data API. Use this method only if you cannot connect using a MongoDB driver.
238
+
> The second method is to connect via mLab’s RESTful Data API. Use this method only if you cannot connect using a MongoDB driver.
239
239
240
-
> ***Visit MongoLab's official documentation if you have any security concerns about using the Data API***
240
+
> ***Visit mLab's official documentation if you have any security concerns about using the Data API***
0 commit comments