项目作者: MarkRabey

项目描述 :
Adds async/await to NeDB
高级语言: TypeScript
项目地址: git://github.com/MarkRabey/nedb-async-await.git
创建时间: 2018-04-27T13:23:59Z
项目社区:https://github.com/MarkRabey/nedb-async-await

开源协议:MIT License

下载


NeDB Async/Await

Async/Await (Promise) Wrapper for NeDB

Getting Started

Install with: npm install nedb-async-await.

Usage

Example using async and await:

  1. import { Datastore } from "nedb-async-await";
  2. async function doSomething() {
  3. const users = Datastore({
  4. filename: 'database.json',
  5. autoload: true
  6. });
  7. await users.insert([
  8. { _id: 1, name: 'John Doe' },
  9. { _id: 2, name: 'Jane Doe' },
  10. ]);
  11. let john = await users.findOne({ name: 'John Doe' });
  12. console.log(john);
  13. // { _id: 1, name: 'John Doe' }
  14. }

More coming soon.