Preparing our first project
Our focus in this chapter is to create a microservice that provides really simple CRUD operations. So, it’s going to be mostly domain-centric. That’s why we start our application from the database.
To follow our examples, open the Ch05
folder in this book’s GitHub repository and open it using your favorite text editor.
There’s a difference between knowing the path and walking the path.
We prefer that you don’t just download and explore the repository and that you also try to write some code with us. This will help you gain valuable practice.
Understanding the concept of packages
Building software doesn’t mean that you should implement everything from scratch and this fact doesn’t depend on programming languages. It is also applicable for Node.js development. Our main focus should always be solving business problems and making this process fast, easy, secure, and reliable. Almost every popular...