Questions tagged [nedb]

Embedded persistent database for Node.js, written in Javascript, with no dependency (except npm modules of course). You can think of it as a SQLite for Node.js projects, which can be used with a simple `require` statement. The API is a subset of MongoDB's. You can use it as a persistent or an in-memory only datastore.

About

NeDB is not intended to be a replacement of large-scale databases such as MongoDB! Its goal is to provide you with a clean and easy way to query data and persist it to disk, for web applications that do not need lots of concurrent connections, for example a continuous integration and deployment server and desktop applications built with Node Webkit or Electron.

Links

195 questions
0
votes
1 answer

Can we use nedb with NativeScript?

I'm working on application where I have desktop app and mobile app which is mostly in offline mode. I have done for Electron based desktop app with nedb, angular2 and TypeScript. But I'm not sure that nedb can be setup with NativeScript with Ionic…
Hitesh Balar
  • 181
  • 3
  • 13
0
votes
2 answers

Vuejs use NeDB,can not find database files

Vue create project: vue init webpack-simple nedbtest install Nedb database: npm i nedb -S change App.vue :