Lowdb

Flat JSON file database for Node

  • Serverless.

  • Multiple databases.

  • In-memory or disk-based.

  • 80+ methods from Lo-Dash API.

  • Asynchronous and fault-tolerant writing.

  • Extendable

LowDB uses Lo-Dash functional progamming API, it's a light weight DB implementation, which could be disk-based or in-memory database.

Installing it: $ npm install lowdb

Sample usage:

1
var low = require('lowdb');
1
2
var db = low();           // in-memory
var db = low('db.json'); // disk-based
1
2
3
var db = low('db.json')
db('modules').push({ title: 'lowdb', type:'db-util'});
db('modules').push({ title: 'lodash', type:'util'});
1
2
3
4
// Get all the titles.
db('modules')
  .pluck('title')
  .value()

On the db object we have the below actions:

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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
[ 'after',
  'assign',
  'at',
  'bind',
  'bindAll',
  'bindKey',
  'chain',
  'collect',
  'compact',
  'compose',
  'constant',
  'countBy',
  'create',
  'createCallback',
  'curry',
  'debounce',
  'defaults',
  'defer',
  'delay',
  'difference',
  'drop',
  'each',
  'eachRight',
  'extend',
  'filter',
  'flatten',
  'forEach',
  'forEachRight',
  'forIn',
  'forInRight',
  'forOwn',
  'forOwnRight',
  'functions',
  'groupBy',
  'indexBy',
  'initial',
  'intersection',
  'invert',
  'invoke',
  'keys',
  'map',
  'mapValues',
  'max',
  'memoize',
  'merge',
  'methods',
  'min',
  'object',
  'omit',
  'once',
  'pairs',
  'partial',
  'partialRight',
  'pick',
  'pluck',
  'property',
  'pull',
  'range',
  'reject',
  'remove',
  'rest',
  'select',
  'shuffle',
  'sortBy',
  'tail',
  'tap',
  'throttle',
  'times',
  'toArray',
  'transform',
  'union',
  'uniq',
  'unique',
  'unzip',
  'values',
  'where',
  'without',
  'wrap',
  'xor',
  'zip',
  'zipObject',
  'all',
  'any',
  'clone',
  'cloneDeep',
  'contains',
  'detect',
  'escape',
  'every',
  'find',
  'findIndex',
  'findKey',
  'findLast',
  'findLastIndex',
  'findLastKey',
  'findWhere',
  'foldl',
  'foldr',
  'has',
  'identity',
  'include',
  'indexOf',
  'inject',
  'isArguments',
  'isArray',
  'isBoolean',
  'isDate',
  'isElement',
  'isEmpty',
  'isEqual',
  'isFinite',
  'isFunction',
  'isNaN',
  'isNull',
  'isNumber',
  'isObject',
  'isPlainObject',
  'isRegExp',
  'isString',
  'isUndefined',
  'lastIndexOf',
  'mixin',
  'noConflict',
  'noop',
  'now',
  'parseInt',
  'random',
  'reduce',
  'reduceRight',
  'result',
  'runInContext',
  'size',
  'some',
  'sortedIndex',
  'template',
  'unescape',
  'uniqueId',
  'support',
  'templateSettings',
  'first',
  'last',
  'sample',
  'take',
  'head',
  'toString',
  'value',
  'valueOf',
  'join',
  'pop',
  'shift',
  'push',
  'reverse',
  'sort',
  'unshift',
  'concat',
  'slice',
  'splice' ]

All in all this a module that helps you for a quick prototype, not meant for high performance and is not scalable.

Thanks to typicode for this sweet module.

GIF FTW!:

Suggest a module

Comments