Check Node.js version
node --versionCheck npm version
npm --versionCheck Angular version
ng versionFix Windows Powershell Policy Issue
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUserInstall latest Angular version
npm install --global @angular/cli@nextCreate new Angular project
ng new bookstore-webInstall Angular Material package
ng add @angular/materialInstall Tailwind CSS package
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss initConfig Tailwind CSS
content: [
"./src/**/*.{html,ts}",
],Add Tailwind CSS to styles
@tailwind base;
@tailwind components;
@tailwind utilities;Run Angular project
ng serve
ng serve --openCreate new components
ng generate component components/books-list
ng generate component components/bookformCreate http services
ng g s http📌 Update these files in order
🔹app.component
🔹app.routes
🔹books-list
🔹bookform
🔹interfaces/book.ts
🔹app.config
🔹books-list
🔹bookform