A NodeJS project wrapper using Nedb database.
Download ZIP or clone github repository locally:
git clone https://github.com/osieltorres/nodejs-nedb-wrapper.git my-project
cd my-project
Install dependencies
npm install
or
yarn
For development
Nodemon is already configured to monitor changes in source files and automatically reload your nodejs server, perfect for development mode.
Just type on console:
npm start
You can learn more about NeDB here.
Note: If you need well organized code, and maybe to validate data in the process, I recommend you to use Camo, an ODM (Object Document Mappers), it treats NeDB datastores as classes, so you can create schemas and so much more.