New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

nosql

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nosql

NoSQL embedded database for small Node.js projects (supports insert, update, remove, drop, views, binary files)

latest
Source
npmnpm
Version
6.1.0
Version published
Weekly downloads
274
10.48%
Maintainers
1
Weekly downloads
 
Created
Source

Node.js NoSQL embedded database

NPM version NPM quality NPM downloads MIT License

IMPORTANT: the new version v5.0 has new methods than older version. The structure of database file is same.

Installation

$ npm install nosql

Usage

var NoSQL = require('nosql');
var db = NoSQL.load('/path/to/database.nosql');

// db === Database instance <https://docs.totaljs.com/latest/en.html#api~Database>

db.find().make(function(filter) {
    filter.where('age', '>', 20);
    filter.where('removed', false);
    filter.callback(function(err, response) {
        console.log(err, response);
    });
});

Contributors

You must see it

Total.js framework

Keywords

nosql

FAQs

Package last updated on 30 Oct 2017

Did you know?

Socket

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