About 466,000 results
Open links in new tab
  1. How do I store NeDB objects in a collection? - Stack Overflow

    Sep 9, 2021 · 0 I want to use NeDB as a database for a very simple ExpressJS application. I would like to store collections of objects into a separate file, so one file for orders (orders.json). …

  2. Newest 'nedb' Questions - Stack Overflow

    Nov 17, 2022 · I have a NedB database which I'm trying to insert some new data into that I retrieve from HTML form, this is my function to insert new. …

  3. How can I import NeDB as ES Mobule - Stack Overflow

    Jul 29, 2022 · The requested module 'nedb' is a CommonJS module, which may not support all module.exports as named exports. CommonJS modules can always be imported via the …

  4. node.js - Where is NEDB file stored? - Stack Overflow

    Mar 31, 2017 · Where is NEDB file stored? Asked 8 years, 8 months ago Modified 6 years, 6 months ago Viewed 2k times

  5. node.js - NeDB + Typescript - Stack Overflow

    Aug 10, 2016 · NeDB + Typescript Asked 8 years, 9 months ago Modified 8 years, 4 months ago Viewed 3k times

  6. node.js - nedb - Create databases dynamically - Stack Overflow

    Dec 12, 2020 · I have two Temp. Sensors on my Raspberry Pi and I have a node.js Express app. I want to create nedb databases dynamically of an array with sensor objects. So I have an …

  7. javascript - Update a row in nedb - Stack Overflow

    Nov 8, 2015 · You should call db.loadDatabase(); again at the end of db.update(); to see, that no second row with the same _id: appears instead the specific doc gets directly updated. Edit: It …

  8. Get node.js neDB data into a variable - Stack Overflow

    I am able to insert and retrieve data from an neDB database in nodejs. But I cannot pass the data outside of the function that retrieves it. I have read through the neDB documentation and I …

  9. Angular 2: How do I use nedb with a web only application?

    Nov 29, 2016 · <script>var nedb = new Nedb({filename: 'someFile2', autoload: true}); </script> This loads the persistent nedb database "someFile2" under indexeddb in the Google Chrome …

  10. javascript - removing data from NeDB database - Stack Overflow

    May 12, 2017 · Updates to data are appended at the end of the file until NeDB "compacts" the data. You can manually compact the data with the command: …