项目作者: nikolvs

项目描述 :
The command-line tool for NeDB
高级语言: JavaScript
项目地址: git://github.com/nikolvs/nedb-repl.git
创建时间: 2016-09-25T08:29:45Z
项目社区:https://github.com/nikolvs/nedb-repl

开源协议:MIT License

下载


nedb-repl

The command-line tool for NeDB

Build Status
Dependency Status
devDependency Status

This is an interactive interface to query and update data, like MongoDB Shell, but for NeDB.

Install

  1. npm install -g nedb-repl

Usage

To open a datastore file, use:

  1. $ nedb foo.db

Inside the REPL, the datastore namespace is attached to the db global property.

You can display the datastore you’re using by typing:

  1. nedb> db.filename
  2. foo.db

To perform queries and other operations, you can use the well-known NeDB datastore methods without the callback param. See NeDB API.

  1. nedb> db.insert([ { a: 1 }, { a: 2 } ])
  2. {"a":1,"_id":"Kkui4fblZ5kqkmc8"},
  3. {"a":2,"_id":"9ptV45vIEbBparvA"}
  4. nedb> db.find({ a: 1 })
  5. {"a":1,"_id":"Kkui4fblZ5kqkmc8"}
  6. nedb> db.count()
  7. 2

You can change the datastore you’re using with the .open command:

  1. nedb> .open bar.db
  2. Opened file bar.db

If the filename is not specified, the datastore is set to in-memory only.

You can see other REPL commands by typing .help.

Changelog

1.2.0

  • Automatically execute cursors (no need to put .exec() in the final of each query)

1.1.0

  • Automatically reload datastore when it changes

License

MIT © Nikolas Silva