This project is part of the Udemy course 30 Days of Angular: Build 30 Web Projects with Angular.
GuessTheNumber is a simple web-based game built with Angular. The objective is for the player to guess a randomly generated number within a certain range. The application provides feedback on each guess, indicating whether the guess is too high, too low, or correct.
- Interactive number guessing game
- Real-time feedback for each guess
- Responsive and modern UI using Angular
- Built with Angular CLI for easy development and testing
- Node.js (v18 or higher recommended)
- Angular CLI
- Clone the repository or download the project files.
- Install dependencies:
npm install
To start a local development server, run:
ng serveNavigate to http://localhost:4200/ in your browser. The app will reload automatically if you change any source files.
To build the project for production:
ng buildThe build artifacts will be stored in the dist/ directory.
To execute unit tests via Karma:
ng testTo run end-to-end tests:
ng e2eThis project is for educational purposes as part of the Udemy course "30 Days of Angular: Build 30 Web Projects with Angular".