
Step-by-step: Building a Node.js server (2021 edition) — Part 2/4 - Docker
If you want to use the server starter directly without going through the tutorial, find the code on Github. Link to the next parts are at the bottom of this page. In Part I we built a basic Koa.js server with Typescript and improved our workflows with some tooling. The next step would be to set up a database to store and retrieve data. We will use MongoDB, a NoSQL database. But we’d like to have a single and simple way to install it on each developer’s machine instead of relying on tedious manual configuration. We’d also like to make the installation process deterministic, with configuration stored in files instead of set by the OS itself (environment variables). ...



