Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/albertobasalo/ng-dev
🅰️ Sample code for Angular development courses by https://albertobasalo.dev
https://github.com/albertobasalo/ng-dev
angular course demo-app sample
Last synced: 19 days ago
JSON representation
🅰️ Sample code for Angular development courses by https://albertobasalo.dev
- Host: GitHub
- URL: https://github.com/albertobasalo/ng-dev
- Owner: AlbertoBasalo
- Created: 2023-05-19T14:42:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-09T08:36:34.000Z (about 1 year ago)
- Last Synced: 2023-11-09T10:07:04.953Z (about 1 year ago)
- Topics: angular, course, demo-app, sample
- Language: TypeScript
- Homepage:
- Size: 2.5 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NgDev
Sample code for Angular development courses by [Alberto Basalo](https://albertobasalo.dev)
## Generated with Angular CLI 16
```bash
ng new nd-dev -s -t -p=lab --routing --standalone --style=css
```## Clone Repository, install dependencies, and run the project
[Repository on GitHub](https://github.com/AlbertoBasalo/ng-dev)
```bash
# clone repository
git clone https://github.com/AlbertoBasalo/ng-dev.git
cd ng_dev
# install dependencies
npm i
# run api server (in one terminal)
npm run api
# run project (in another terminal)
npm start
# open browser at http://localhost:4200
```## 🛠 VS Code configuration
- [My Visual Studio Code .dotfiles](https://github.com/AlbertoBasalo/dotfiles)
### ⚙️ Settings
- [How to configure VSCode to code better TypeScript](https://albertobasalo.medium.com/how-to-configure-vscode-to-code-better-typescript-d6e000b2cb06?sk=4c0edee7dd123c0e0c7c6f7266c91e4d)
- [My settings.json](https://github.com/AlbertoBasalo/dotfiles/blob/main/settings.json)
### 🧩 Extensions
- [5 VSCode extensions to write better TypeScript](https://albertobasalo.medium.com/5-vscode-extensions-to-write-better-typescript-9804acbada9?sk=8907a533ca7e5b14aa2daa397bb667d1)
- [All the Extensions I use](https://github.com/AlbertoBasalo/dotfiles/blob/main/extensions-i-use.md)
### 👩🏼⚖️ EsLint rules
- [Fine-tune ESLint rules to write better TypeScript](https://albertobasalo.medium.com/fine-tune-eslint-rules-to-code-better-typescript-e4cabbbe2fa1?sk=fe0c1c07936f2c4a503dbce0272da621)
- [My eslint.json](https://github.com/AlbertoBasalo/dotfiles/blob/main/eslint.json)
#### ⌨ VS Code Shortcuts
- `F1` :command list
- `CTRL+P` : file
- `CTRL+T` : search code
- `CTRL+K CTRL+Z` : code comment
- `CTRL+K CTRL+U` : uncomment code
- `F12` : go to definition
- `CTRL+Ñ` : show hide terminal
- `CTRL+B`: show hide navigation bar
- `CTRL+K S` : save al files
- `ALT+up|down` : move line---
🧑🏼💻 By Alberto Basalo