Last active
October 12, 2023 21:22
-
-
Save quentinchap/9f89a6c2090b831ab350e5978aba5384 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| npm init --yes; | |
| npm i express typescript ts-node dotenv; | |
| npm i -D typescript @types/express @types/node concurrently nodemon; | |
| npm i --save-dev @types/express; | |
| tsc --init; | |
| mkdir configs controllers middlewares models routes services utils; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment