UNPKG

feathers-blipp

Version:
13 lines (10 loc) 245 B
const NeDB = require('nedb'); const path = require('path'); module.exports = function (app) { const dbPath = app.get('nedb'); const Model = new NeDB({ filename: path.join(dbPath, 'user.db'), autoload: true }); return Model; };