Add authentication Generate authentication Create a user and log in Create the user Get a token Securing the messages service Securing real-time events What’s next? Add ...
Performance Speed Memory footprint Performance Speed NeDB is not intended to be a replacement of large-scale databases such as MongoDB, and as such was not designed for spe...
Creating a Chat Application Creating a Chat Application Well alright! Let’s build our first Feathers app! We’re going to build a real-time chat app with NeDB as the database. ...
Pull requests Pull requests Important: I consider NeDB to be feature-complete, i.e. it does everything I think it should and nothing more. As a general rule I will not accept p...
Array fields Array fields When a field in a document is an array, NeDB first tries to see if the query value is an array to perform an exact match, then whether there is an arr...
Persistence Persistence Under the hood, NeDB's persistence uses an append-only format, meaning that all updates and deletes actually result in lines added at the end of the dat...
Databases An in-memory database In the browser Querying As a REST API What’s next? Databases In the services chapter we created a custom in-memory messages service that c...