-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample.js
52 lines (50 loc) · 1.29 KB
/
example.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
var JsonDB = require('./index').JsonDB;
var async = require('async');
var db;
async.series([
function(callback) {
db = new JsonDB(':memory:', function(err) {
console.log('db opened');
callback(err);
});
},
function(callback) {
// create a store for 'obj' type object with an index for the field 'a'
db.initialize('obj', [['a']], function(err) {
if (err) {
console.error('Error initializing db', err);
}
else {
console.log('done initializing');
}
callback(err);
});
},
function(callback) {
console.log('saving ...');
db.save({ a: 50, b: 60, lat: 37.11111111111, lon: 44.44444444444 }, 'obj', function(err) {
console.log('saved');
callback(err);
});
},
function(callback) {
console.log('find without index ...');
db.find('obj', { b: 60 }, function(err, items) {
if (items[0].b !== 60) throw new Error('item not found');
callback(err);
});
},
function(callback) {
console.log('find with index ...');
db.find('obj', { a: 50 }, function(err, items) {
if (items[0].a !== 50) throw new Error('item not found');
callback(err);
});
},
function(callback) {
db.close(function(err) {
console.log('db closed');
callback(err);
});
},
]);