somewhere
Version:
Small in-memory database for Node.js that persists on disk
138 lines (116 loc) • 3.1 kB
Markdown
# somewhere.js [](https://travis-ci.org/dreyacosta/somewhere.js)
Small in-memory database for Node.js that persists on disk
## Installation
```sh
$ npm install somewhere
```
## Usage
### Load
```js
var Database = require('somewhere');
```
### Create database
```js
var onlyMemoryDb = new Database();
var memoryDiskDb = new Database('./database.json');
```
### Database connection
```js
var db = new Database('./database.json');
```
### Save
```js
db.save('collection', data);
```
```js
var movie = {
title: "Die Hard",
genre: "Action",
director: "John McTiernan",
description: "John McClane, officer of the NYPD, tries to save wife Holly
Gennaro and several others, taken hostage by German terrorist Hans Gruber
during a Christmas party at the Nakatomi Plaza in Los Angeles."
};
db.save('movies', movie);
/** Result: Saved Object (autogenerated id)
{
id: "0ab7d8a8-ab46-35cd-ccd4-81ccfe81c3f1",
title: "Die Hard",
genre: "Action",
director: "John McTiernan",
description: "John McClane, officer of the NYPD, tries to save wife Holly
Gennaro and several others, taken hostage by German terrorist Hans Gruber
during a Christmas party at the Nakatomi Plaza in Los Angeles."
}
*/
```
### Find one
```js
db.findOne('collection', query);
```
```js
db.findOne('movies', { title: 'Die Hard' });
/** Result: Object
{
id: "0ab7d8a8-ab46-35cd-ccd4-81ccfe81c3f1",
title: "Die Hard",
genre: "Action",
director: "John McTiernan",
description: "John McClane, officer of the NYPD, tries to save wife Holly
Gennaro and several others, taken hostage by German terrorist Hans Gruber
during a Christmas party at the Nakatomi Plaza in Los Angeles."
}
*/
```
### Find all
```js
db.find('movies', query);
```
```js
db.find('movies', { genre: 'Action' });
/** Result: Objects array
[{
id: "0ab7d8a8-ab46-35cd-ccd4-81ccfe81c3f1",
title: "Die Hard",
genre: "Action",
director: "John McTiernan",
description: "John McClane, officer of the NYPD, tries to save wife Holly
Gennaro and several others, taken hostage by German terrorist Hans Gruber
during a Christmas party at the Nakatomi Plaza in Los Angeles."
}]
*/
```
### Update
```js
db.update('movies', id, data);
```
```js
db.update('movies', '0ab7d8a8-ab46-35cd-ccd4-81ccfe81c3f1', { genre: "Action/Thriller" });
/** Result: Updated Object
{
id: "0ab7d8a8-ab46-35cd-ccd4-81ccfe81c3f1",
title: "Die Hard",
genre: "Action/Thriller",
director: "John McTiernan",
description: "John McClane, officer of the NYPD, tries to save wife Holly
Gennaro and several others, taken hostage by German terrorist Hans Gruber
during a Christmas party at the Nakatomi Plaza in Los Angeles."
}
*/
```
### Remove
```js
db.remove('movies', id);
```
```js
db.remove('movies', '0ab7d8a8-ab46-35cd-ccd4-81ccfe81c3f1');
/** Result: Boolean
true
*/
```
### Clear database
```js
db.clear()
```
## License
This software is free to use under the MIT license.