Socket
Socket
Sign inDemoInstall

nedb-model

Package Overview
Dependencies
103
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    nedb-model

Implement your own models for nedb


Version published
Weekly downloads
4
increased by33.33%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

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/

FAQs

Last updated on 14 Dec 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc