https://github.com/rbuj-uoc/m4.256-ejemplos
Ejemplos de la asignatura Desarrollo front-end avanzado del Máster universitario de Desarrollo de Sitios y Aplicaciones Web
https://github.com/rbuj-uoc/m4.256-ejemplos
angular
Last synced: about 2 months ago
JSON representation
Ejemplos de la asignatura Desarrollo front-end avanzado del Máster universitario de Desarrollo de Sitios y Aplicaciones Web
- Host: GitHub
- URL: https://github.com/rbuj-uoc/m4.256-ejemplos
- Owner: rbuj-UOC
- License: cc0-1.0
- Created: 2024-09-27T21:26:26.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-14T12:31:26.000Z (over 1 year ago)
- Last Synced: 2025-02-14T13:29:40.413Z (over 1 year ago)
- Topics: angular
- Language: TypeScript
- Homepage:
- Size: 1.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Setup on MacOS
## Install homebrew
You can skip this step if you have homebrew installed on your system.
Read how to install Homebrew from [its homepage](https://brew.sh/).
## Install Node 20
Update and upgrade installed packages:
```
brew update && brew upgrade
```
Install node using homebrew:
```
brew install node
```
Check the version of node:
```
$ node --version
v22.9.0
```
Install node 20:
```
brew install node@20
```
Overwrite linked version of node:
```
brew link --overwrite node@20
```
Check the version of node:
```
$ node --version
v20.18.1
```
## Install Angular
Install angular cli
```
sudo npm install -g @angular/cli
```