https://github.com/davdifr/angular-bootcamp
Beginner-friendly course covering essentials for entry-level developers.
https://github.com/davdifr/angular-bootcamp
angular17 bootcamp course-materials
Last synced: 4 days ago
JSON representation
Beginner-friendly course covering essentials for entry-level developers.
- Host: GitHub
- URL: https://github.com/davdifr/angular-bootcamp
- Owner: davdifr
- Created: 2024-04-11T14:33:00.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-07T09:47:18.000Z (almost 2 years ago)
- Last Synced: 2025-07-06T08:41:24.642Z (7 months ago)
- Topics: angular17, bootcamp, course-materials
- Homepage:
- Size: 1.53 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Angular Bootcamp
Welcome to the Angular Bootcamp!
Version 1.0.0 🧐
## Prerequisites
Before beginning, you'll need to have Node.js installed on your machine.
Node.js is essential for running the Angular CLI, which is the tool we'll use to create and manage our Angular projects.
If you haven't installed Node.js yet, follow the instructions below:
### Linux, macOS
Install nvm, with:
```bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash
```
Then, install Node.js with:
```bash
nvm install --lts
```
### Windows
To install Node.js on Windows, you can either:
- Use [nvm-windows](https://github.com/coreybutler/nvm-windows) by following its provided instructions.
- Alternatively, download Node.js directly using the installer available at the [official Node.js website](https://nodejs.org/).
If you are using Windows Subsystem for Linux (WSL), please refer to the installation instructions for Linux.
## Getting Started
Install the Angular CLI globally with:
```bash
npm install -g @angular/cli
```
Once the Angular CLI is installed, you can create a new Angular project with:
```bash
ng new angular-bootcamp
```
Well done! You've created your first Angular project. 🎉
### [➡️ Next section: 00-angular-bootcamp-overview](https://github.com/davdifr/angular-bootcamp/tree/00-angular-bootcamp-overview)