In this guide you can build a REST API with Node.js SQLite and Express.js. Then, in a next part, we will be building automated Unit tests using Mocha and Chai, ready for a Test-Driven Development (TDD).
The main components of this REST service are:
- A Node.js base project, created as a NPM module
- An Express.js web server to manage the API endpoints, requests and responses
- A SQLite database for application storage
Continue reading “Build a REST API with Node.js SQLite and Express JS”