Back
Close

Building a Basic Todo List REST API in Node.js with Express

ACT
65.8K views

Persistence

Here is an example of using a database. To do so, the todo model has been extracted from app.js and added as a module in the models folder:

 /
  |
  | - app.js
  | - models/todo.js

Within the todo.js module, a require has been done to the sqlite3 module that enable the use of an in-memory database.

Example of use of persistence

Now we have to work on the presentation layer.

Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.
Go to tech.io