nedb-model

0.0.3 • Public • Published

nedb-model

Implement your own models for nedb.

Installation

npm install --save nedb-model

Usage example

var Datastore = require('nedb-model'),
	database  = new Datastore({
		filename: 'data.json',
		autoload: true,
		afterDeserialization: function (data) {
			// Implement your constructor here.
			return new Class(data);
		}
	});

database
	.find({
		foo: 'bar',
	})
	.exec(function (error, data) {
		data[0] instanceof Class; // true
	});

License

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/

Readme

Keywords

none

Package Sidebar

Install

npm i nedb-model

Weekly Downloads

3

Version

0.0.3

License

GPL-3.0+

Last publish

Collaborators

  • muchweb