https://github.com/devsazal/todo-app-angular19
Todo Web App - Angular v19
https://github.com/devsazal/todo-app-angular19
angular front-end typescript
Last synced: about 2 months ago
JSON representation
Todo Web App - Angular v19
- Host: GitHub
- URL: https://github.com/devsazal/todo-app-angular19
- Owner: DevSazal
- License: mit
- Created: 2024-12-02T17:59:37.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-07T15:52:10.000Z (over 1 year ago)
- Last Synced: 2026-02-06T18:54:01.223Z (5 months ago)
- Topics: angular, front-end, typescript
- Language: TypeScript
- Homepage:
- Size: 137 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Todo App
The project was developed on angular 19.0.1.
Let's clone the repository on your machine.
The application includes the following files and folders:
```bash
# architecture
# deep drive
todo-app/
├── src/
│ ├── app/
│ │ ├── components/
│ │ │ ├── add-todo/
│ │ │ │ ├── add-todo.component.html
│ │ │ │ └── add-todo.component.ts
│ │ │ │
│ │ │ ├── todo-list/
│ │ │ │ ├── todo-list.component.html
│ │ │ │ ├── todo-list.component.css
│ │ │ │ └── todo-list.component.ts
│ │ │ │
│ │ ├── services/
│ │ │ └── todo.service.ts
│ │ │
│ │ ├── app.component.html
│ │ ├── app.component.ts
│ │ ├── app.config.ts
│ │ └── app.routes.ts
│ │
│ ├── environments/
│ │ └── environment.ts
│ │
│ ├── styles.css
│ ├── index.html
│ └── main.ts
│
├── angular.json
├── package.json
├── README.md
└── tsconfig.json
```
## Installation and Configuration
Let's move to the cloned directory with your terminal.
To install, build, and start the application for the first time, run the following commands:
```bash
npm install
```
Let's configure the backend APIs server in `src/environments/environment.ts` file:
```typescript
export const environment = {
backendURL: '' // Backend APIs Endpoint
};
```
Already done? Cool! You are almost ready to enjoy the app. ⛳️
### Build & Run:
To start a local development server, run:
```bash
ng serve
```
Once the server is running, open your browser and navigate to `http://localhost:4200/`
## 🧑💻 Stay in touch
- Author - [Sazal Ahamed](https://sazal.vercel.app)
- Linkedin - [Profie](https://www.linkedin.com/in/sazal-ahamed/)
- GitHub - [DevSazal](https://github.com/DevSazal)
## License
[MIT licensed](LICENSE) © 2024