Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anibulus/todo_application
Angular 17 front-end application deployed at firebase. It's a TODO web application
https://github.com/anibulus/todo_application
angular angular17 javascript server-side-rendering
Last synced: 1 day ago
JSON representation
Angular 17 front-end application deployed at firebase. It's a TODO web application
- Host: GitHub
- URL: https://github.com/anibulus/todo_application
- Owner: Anibulus
- Created: 2024-08-09T23:28:20.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-09T23:33:01.000Z (3 months ago)
- Last Synced: 2024-08-10T00:36:28.606Z (3 months ago)
- Topics: angular, angular17, javascript, server-side-rendering
- Language: HTML
- Homepage: https://todoapp-d5e74.web.app/
- Size: 130 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Angular Basics Project
Application without tests and server side rendering## How to install Angular
```bash
npm i @angular/cli -g
```Create an angular aplication whithout tests
```bash
ng new todo_app --skip-tests
```Run Angular application
```bash
ng serve
```Create Angular component (route: pages/home)
```bash
ng g component pages/home
```The folder `/dist/[name-project]/` is the one to deploy.
## Deploy to Production
Build the application (optimization tasks)
```bash
ng build
```This application was deployed at [Firebase Console](https://console.firebase.google.com)
```bash
sudo npm install -g firebase-toolsfirebase login
firebase init
firebase deploy --debug
```[TODO application deployed](https://todoapp-d5e74.web.app)
### Pending
Check how Injector works with local storage
```js
injector = inject(Injector);
```