Node starter project (TypeScript + Docker)
Project skeleton We will assume that the project will have several smaller projects, ie. container, e.g. a part for microservices, a part for working with the database… It is good to create subfolders in the root of the project for each smaller project, e.g.:
|
1 2 3 |
node_project/ ├── api/ # Ovaj za mikroservise ├── data/ # Ovaj folder za bazu podataka |
Creating package.json First we will create a package.json file in … Read more
