# Download the example or clone the repo from GitHub
git clone https://github.com/ganatan/angular-app.git
# Download the example or clone the repo from GitLab
git clone https://gitlab.com/ganatan/angular-app.git
# Change to the project directory
cd angular-app
cd backend-node-typescriptTo install dependencies:
npm installTo check for outdated dependencies:
npm outdatednpm run startIn your browser, go to http://localhost:9000
npm run start– Start the development servernpm run generate-structure– Generate and display the project structure
To lint the code with ESLint:
npm run lintTo run tests:
npm run testTo view test coverage:
npm run coverageTo build the project with Webpack:
npm run buildTo start the server in production mode:
npm run serveIn your browser, go to http://localhost:3000