A starter node app using express and typescript! A super simple base to get off the ground quickly. It's unopiniated, has no structure(ish) and no templating.
make sure you have node and npm installed
If it's the first time trying to run this starter project, install all the dependancies
npm install
Start the development server by running the following command in a terminal from the root folder of the project
npm run dev
If you're in VSCode, run using the debugger by hitting F5
Build the project (outputs to ./dist)
npm run build
Run the built project
npm start
docker build -t ts-express-app .
docker run -it --rm -p 3000:3000 --name ts-express-app ts-express-app