# 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-typescript
To install dependencies:
npm install
To check for outdated dependencies:
npm outdated
npm run start
In 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 lint
To run tests:
npm run test
To view test coverage:
npm run coverage
To build the project with Webpack:
npm run build
To start the server in production mode:
npm run serve
In your browser, go to http://localhost:3000