Simple Angular 18+ Starter. It contains:
- Angular 18.0.2
- Angular CLI 18.0.3
- Angular Router
- Live Reloading
- TypeScript 5.4.5
- RxJS 7.8.1
- Node (Make sure you have the node 20+ installed)
- Clone the repository
gh repo clone piotrlewandowski/angular-starter(or if you're not using GitHub CLI:git clone git@github.com:piotrlewandowski/angular-starter.git) - If you're using NVM run
nvm useinside project directory to use node version set in.nvmrcfile - Run
npm installornpm ito install all the dependencies - To begin development task, run
npm start - Open http://localhost:4200/
npm clean- delete thedistfoldernpm start- start the dev server and watch for changesnpm run build- create a production ready build indistfoldernpm run watch- production build with continuous build process that responds to changes in real timenpm run test- run unit testsnpm run prettier:check- execute prettier checknpm run prettier:write- execute prettier check and automatically fix problemsnpm run lint:check- execute eslint checknpm run lint:fix- execute eslint check and automatically fix problems