An open API service indexing awesome lists of open source software.

https://github.com/osmanjimenez/crud_ionic_express

Crud construido con ionic en el frontend y para el backend se trabajo con express
https://github.com/osmanjimenez/crud_ionic_express

angular express-js ionic typescript

Last synced: 2 months ago
JSON representation

Crud construido con ionic en el frontend y para el backend se trabajo con express

Awesome Lists containing this project

README

          





CRUD_IONIC_EXPRESS


license
last-commit
repo-top-language
repo-language-count



Developed with the software and tools below.



EditorConfig
JavaScript
HTML5
Nodemon
ESLint


MySQL
tsnode
TypeScript
Express
JSON



## πŸ”— Quick Links

> - [πŸ“ Overview](#-overview)
> - [πŸ“¦ Features](#-features)
> - [πŸ“‚ Repository Structure](#-repository-structure)
> - [🧩 Modules](#-modules)
> - [πŸš€ Getting Started](#-getting-started)
> - [βš™οΈ Installation](#️-installation)
> - [πŸ€– Running crud_ionic_express](#-running-crud_ionic_express)
> - [πŸ§ͺ Tests](#-tests)
> - [πŸ›  Project Roadmap](#-project-roadmap)
> - [🀝 Contributing](#-contributing)
> - [πŸ“„ License](#-license)
> - [πŸ‘ Acknowledgments](#-acknowledgments)

---

## πŸ“ Overview

`overview`

---

## πŸ“¦ Features

`features`

---

## πŸ“‚ Repository Structure

```sh
└── crud_ionic_express/
β”œβ”€β”€ README.md
β”œβ”€β”€ backend
β”‚ β”œβ”€β”€ api
β”‚ β”‚ β”œβ”€β”€ connection
β”‚ β”‚ β”‚ └── connection.js
β”‚ β”‚ └── routes
β”‚ β”‚ └── user.js
β”‚ β”œβ”€β”€ app.js
β”‚ β”œβ”€β”€ collection
β”‚ β”‚ └── Crud_Express.postman_collection.json
β”‚ β”œβ”€β”€ package-lock.json
β”‚ β”œβ”€β”€ package.json
β”‚ β”œβ”€β”€ scripts
β”‚ β”‚ β”œβ”€β”€ 01_create_bd.sql
β”‚ β”‚ └── 02_create_table.sql
β”‚ └── server.js
└── frontend
β”œβ”€β”€ .browserslistrc
β”œβ”€β”€ .editorconfig
β”œβ”€β”€ .eslintrc.json
β”œβ”€β”€ .gitignore
β”œβ”€β”€ angular.json
β”œβ”€β”€ capacitor.config.ts
β”œβ”€β”€ ionic.config.json
β”œβ”€β”€ karma.conf.js
β”œβ”€β”€ package-lock.json
β”œβ”€β”€ package.json
β”œβ”€β”€ src
β”‚ β”œβ”€β”€ app
β”‚ β”‚ β”œβ”€β”€ app-routing.module.ts
β”‚ β”‚ β”œβ”€β”€ app.component.html
β”‚ β”‚ β”œβ”€β”€ app.component.scss
β”‚ β”‚ β”œβ”€β”€ app.component.spec.ts
β”‚ β”‚ β”œβ”€β”€ app.component.ts
β”‚ β”‚ β”œβ”€β”€ app.module.ts
β”‚ β”‚ β”œβ”€β”€ components
β”‚ β”‚ β”‚ β”œβ”€β”€ components.module.ts
β”‚ β”‚ β”‚ └── error-messages
β”‚ β”‚ β”œβ”€β”€ data
β”‚ β”‚ β”‚ └── services
β”‚ β”‚ β”œβ”€β”€ guards
β”‚ β”‚ β”‚ └── auth
β”‚ β”‚ β”œβ”€β”€ modals
β”‚ β”‚ β”‚ β”œβ”€β”€ create
β”‚ β”‚ β”‚ └── update
β”‚ β”‚ β”œβ”€β”€ pages
β”‚ β”‚ β”‚ β”œβ”€β”€ home
β”‚ β”‚ β”‚ └── login
β”‚ β”‚ └── services
β”‚ β”‚ β”œβ”€β”€ api
β”‚ β”‚ β”œβ”€β”€ features
β”‚ β”‚ β”œβ”€β”€ index.ts
β”‚ β”‚ └── utils
β”‚ β”œβ”€β”€ assets
β”‚ β”‚ β”œβ”€β”€ icon
β”‚ β”‚ β”‚ └── favicon.png
β”‚ β”‚ └── shapes.svg
β”‚ β”œβ”€β”€ environments
β”‚ β”‚ β”œβ”€β”€ environment.dev.ts
β”‚ β”‚ β”œβ”€β”€ environment.prod.ts
β”‚ β”‚ β”œβ”€β”€ environment.ts
β”‚ β”‚ └── version.ts
β”‚ β”œβ”€β”€ global.scss
β”‚ β”œβ”€β”€ index.html
β”‚ β”œβ”€β”€ main.ts
β”‚ β”œβ”€β”€ polyfills.ts
β”‚ β”œβ”€β”€ test.ts
β”‚ β”œβ”€β”€ theme
β”‚ β”‚ └── variables.scss
β”‚ └── zone-flags.ts
β”œβ”€β”€ tsconfig.app.json
β”œβ”€β”€ tsconfig.base.json
β”œβ”€β”€ tsconfig.doc.json
β”œβ”€β”€ tsconfig.json
└── tsconfig.spec.json
```

---

## 🧩 Modules

backend

| File | Summary |
| --- | --- |
| [server.js](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/backend/server.js) | `backend/server.js` |
| [package.json](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/backend/package.json) | `backend/package.json` |
| [app.js](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/backend/app.js) | `backend/app.js` |
| [package-lock.json](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/backend/package-lock.json) | `backend/package-lock.json` |

backend.api.connection

| File | Summary |
| --- | --- |
| [connection.js](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/backend/api/connection/connection.js) | `backend/api/connection/connection.js` |

backend.api.routes

| File | Summary |
| --- | --- |
| [user.js](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/backend/api/routes/user.js) | `backend/api/routes/user.js` |

backend.collection

| File | Summary |
| --- | --- |
| [Crud_Express.postman_collection.json](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/backend/collection/Crud_Express.postman_collection.json) | `backend/collection/Crud_Express.postman_collection.json` |

backend.scripts

| File | Summary |
| --- | --- |
| [02_create_table.sql](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/backend/scripts/02_create_table.sql) | `backend/scripts/02_create_table.sql` |
| [01_create_bd.sql](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/backend/scripts/01_create_bd.sql) | `backend/scripts/01_create_bd.sql` |

frontend

| File | Summary |
| --- | --- |
| [.eslintrc.json](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/.eslintrc.json) | `frontend/.eslintrc.json` |
| [tsconfig.json](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/tsconfig.json) | `frontend/tsconfig.json` |
| [tsconfig.app.json](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/tsconfig.app.json) | `frontend/tsconfig.app.json` |
| [ionic.config.json](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/ionic.config.json) | `frontend/ionic.config.json` |
| [.editorconfig](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/.editorconfig) | `frontend/.editorconfig` |
| [tsconfig.spec.json](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/tsconfig.spec.json) | `frontend/tsconfig.spec.json` |
| [angular.json](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/angular.json) | `frontend/angular.json` |
| [package.json](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/package.json) | `frontend/package.json` |
| [karma.conf.js](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/karma.conf.js) | `frontend/karma.conf.js` |
| [tsconfig.base.json](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/tsconfig.base.json) | `frontend/tsconfig.base.json` |
| [tsconfig.doc.json](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/tsconfig.doc.json) | `frontend/tsconfig.doc.json` |
| [capacitor.config.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/capacitor.config.ts) | `frontend/capacitor.config.ts` |
| [package-lock.json](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/package-lock.json) | `frontend/package-lock.json` |
| [.browserslistrc](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/.browserslistrc) | `frontend/.browserslistrc` |

frontend.src

| File | Summary |
| --- | --- |
| [polyfills.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/polyfills.ts) | `frontend/src/polyfills.ts` |
| [index.html](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/index.html) | `frontend/src/index.html` |
| [zone-flags.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/zone-flags.ts) | `frontend/src/zone-flags.ts` |
| [test.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/test.ts) | `frontend/src/test.ts` |
| [main.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/main.ts) | `frontend/src/main.ts` |
| [global.scss](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/global.scss) | `frontend/src/global.scss` |

frontend.src.environments

| File | Summary |
| --- | --- |
| [environment.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/environments/environment.ts) | `frontend/src/environments/environment.ts` |
| [environment.prod.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/environments/environment.prod.ts) | `frontend/src/environments/environment.prod.ts` |
| [version.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/environments/version.ts) | `frontend/src/environments/version.ts` |
| [environment.dev.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/environments/environment.dev.ts) | `frontend/src/environments/environment.dev.ts` |

frontend.src.theme

| File | Summary |
| --- | --- |
| [variables.scss](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/theme/variables.scss) | `frontend/src/theme/variables.scss` |

frontend.src.app

| File | Summary |
| --- | --- |
| [app-routing.module.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/app-routing.module.ts) | `frontend/src/app/app-routing.module.ts` |
| [app.component.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/app.component.ts) | `frontend/src/app/app.component.ts` |
| [app.component.scss](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/app.component.scss) | `frontend/src/app/app.component.scss` |
| [app.component.spec.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/app.component.spec.ts) | `frontend/src/app/app.component.spec.ts` |
| [app.component.html](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/app.component.html) | `frontend/src/app/app.component.html` |
| [app.module.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/app.module.ts) | `frontend/src/app/app.module.ts` |

frontend.src.app.guards.auth

| File | Summary |
| --- | --- |
| [auth.guard.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/guards/auth/auth.guard.ts) | `frontend/src/app/guards/auth/auth.guard.ts` |

frontend.src.app.services

| File | Summary |
| --- | --- |
| [index.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/services/index.ts) | `frontend/src/app/services/index.ts` |

frontend.src.app.services.utils.alerts

| File | Summary |
| --- | --- |
| [alert.service.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/services/utils/alerts/alert.service.ts) | `frontend/src/app/services/utils/alerts/alert.service.ts` |

frontend.src.app.services.utils.validations

| File | Summary |
| --- | --- |
| [validation.service.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/services/utils/validations/validation.service.ts) | `frontend/src/app/services/utils/validations/validation.service.ts` |
| [validation-messages.service.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/services/utils/validations/validation-messages.service.ts) | `frontend/src/app/services/utils/validations/validation-messages.service.ts` |

frontend.src.app.services.api

| File | Summary |
| --- | --- |
| [translate.service.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/services/api/translate.service.ts) | `frontend/src/app/services/api/translate.service.ts` |
| [api.service.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/services/api/api.service.ts) | `frontend/src/app/services/api/api.service.ts` |
| [endpoints.service.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/services/api/endpoints.service.ts) | `frontend/src/app/services/api/endpoints.service.ts` |

frontend.src.app.services.features.version

| File | Summary |
| --- | --- |
| [version.service.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/services/features/version/version.service.ts) | `frontend/src/app/services/features/version/version.service.ts` |

frontend.src.app.services.features.invalid-fields

| File | Summary |
| --- | --- |
| [invalid-fields.service.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/services/features/invalid-fields/invalid-fields.service.ts) | `frontend/src/app/services/features/invalid-fields/invalid-fields.service.ts` |

frontend.src.app.modals.create

| File | Summary |
| --- | --- |
| [create.page.spec.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/modals/create/create.page.spec.ts) | `frontend/src/app/modals/create/create.page.spec.ts` |
| [create.page.scss](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/modals/create/create.page.scss) | `frontend/src/app/modals/create/create.page.scss` |
| [create.page.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/modals/create/create.page.ts) | `frontend/src/app/modals/create/create.page.ts` |
| [create.page.html](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/modals/create/create.page.html) | `frontend/src/app/modals/create/create.page.html` |
| [create-routing.module.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/modals/create/create-routing.module.ts) | `frontend/src/app/modals/create/create-routing.module.ts` |
| [create.module.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/modals/create/create.module.ts) | `frontend/src/app/modals/create/create.module.ts` |

frontend.src.app.modals.update

| File | Summary |
| --- | --- |
| [update.module.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/modals/update/update.module.ts) | `frontend/src/app/modals/update/update.module.ts` |
| [update.page.scss](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/modals/update/update.page.scss) | `frontend/src/app/modals/update/update.page.scss` |
| [update-routing.module.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/modals/update/update-routing.module.ts) | `frontend/src/app/modals/update/update-routing.module.ts` |
| [update.page.spec.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/modals/update/update.page.spec.ts) | `frontend/src/app/modals/update/update.page.spec.ts` |
| [update.page.html](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/modals/update/update.page.html) | `frontend/src/app/modals/update/update.page.html` |
| [update.page.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/modals/update/update.page.ts) | `frontend/src/app/modals/update/update.page.ts` |

frontend.src.app.pages.home

| File | Summary |
| --- | --- |
| [home.page.spec.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/pages/home/home.page.spec.ts) | `frontend/src/app/pages/home/home.page.spec.ts` |
| [home.page.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/pages/home/home.page.ts) | `frontend/src/app/pages/home/home.page.ts` |
| [home-routing.module.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/pages/home/home-routing.module.ts) | `frontend/src/app/pages/home/home-routing.module.ts` |
| [home.page.scss](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/pages/home/home.page.scss) | `frontend/src/app/pages/home/home.page.scss` |
| [home.module.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/pages/home/home.module.ts) | `frontend/src/app/pages/home/home.module.ts` |
| [home.page.html](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/pages/home/home.page.html) | `frontend/src/app/pages/home/home.page.html` |

frontend.src.app.pages.login

| File | Summary |
| --- | --- |
| [login.module.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/pages/login/login.module.ts) | `frontend/src/app/pages/login/login.module.ts` |
| [login.page.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/pages/login/login.page.ts) | `frontend/src/app/pages/login/login.page.ts` |
| [login.page.html](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/pages/login/login.page.html) | `frontend/src/app/pages/login/login.page.html` |
| [login.page.spec.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/pages/login/login.page.spec.ts) | `frontend/src/app/pages/login/login.page.spec.ts` |
| [login.page.scss](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/pages/login/login.page.scss) | `frontend/src/app/pages/login/login.page.scss` |
| [login-routing.module.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/pages/login/login-routing.module.ts) | `frontend/src/app/pages/login/login-routing.module.ts` |

frontend.src.app.components

| File | Summary |
| --- | --- |
| [components.module.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/components/components.module.ts) | `frontend/src/app/components/components.module.ts` |

frontend.src.app.components.error-messages

| File | Summary |
| --- | --- |
| [error-messages.component.html](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/components/error-messages/error-messages.component.html) | `frontend/src/app/components/error-messages/error-messages.component.html` |
| [error-messages.component.spec.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/components/error-messages/error-messages.component.spec.ts) | `frontend/src/app/components/error-messages/error-messages.component.spec.ts` |
| [error-messages.component.scss](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/components/error-messages/error-messages.component.scss) | `frontend/src/app/components/error-messages/error-messages.component.scss` |
| [error-messages.component.ts](https://github.com/OsmanJimenez/crud_ionic_express/blob/master/frontend/src/app/components/error-messages/error-messages.component.ts) | `frontend/src/app/components/error-messages/error-messages.component.ts` |

---

## πŸš€ Getting Started

***Requirements***

Ensure you have the following dependencies installed on your system:

- **TypeScript**: `version x.y.z`

### βš™οΈ Installation

1. Clone the crud_ionic_express repository:

```sh
git clone https://github.com/OsmanJimenez/crud_ionic_express
```

2. Change to the project directory:

```sh
cd crud_ionic_express
```

3. Install the dependencies:

```sh
npm install
```

### πŸ€– Running crud_ionic_express

Use the following command to run crud_ionic_express:

```sh
npm run build && node dist/main.js
```

### πŸ§ͺ Tests

To execute tests, run:

```sh
npm test
```

---

## πŸ›  Project Roadmap

- [X] `β–Ί INSERT-TASK-1`
- [ ] `β–Ί INSERT-TASK-2`
- [ ] `β–Ί ...`

---

## 🀝 Contributing

Contributions are welcome! Here are several ways you can contribute:

- **[Submit Pull Requests](https://github.com/OsmanJimenez/crud_ionic_express/blob/main/CONTRIBUTING.md)**: Review open PRs, and submit your own PRs.
- **[Join the Discussions](https://github.com/OsmanJimenez/crud_ionic_express/discussions)**: Share your insights, provide feedback, or ask questions.
- **[Report Issues](https://github.com/OsmanJimenez/crud_ionic_express/issues)**: Submit bugs found or log feature requests for Crud_ionic_express.

Contributing Guidelines

1. **Fork the Repository**: Start by forking the project repository to your GitHub account.
2. **Clone Locally**: Clone the forked repository to your local machine using a Git client.

```sh
git clone https://github.com/OsmanJimenez/crud_ionic_express
```

3. **Create a New Branch**: Always work on a new branch, giving it a descriptive name.

```sh
git checkout -b new-feature-x
```

4. **Make Your Changes**: Develop and test your changes locally.
5. **Commit Your Changes**: Commit with a clear message describing your updates.

```sh
git commit -m 'Implemented new feature x.'
```

6. **Push to GitHub**: Push the changes to your forked repository.

```sh
git push origin new-feature-x
```

7. **Submit a Pull Request**: Create a PR against the original project repository. Clearly describe the changes and their motivations.

Once your PR is reviewed and approved, it will be merged into the main branch.

---

## πŸ“„ License

This project is protected under the [SELECT-A-LICENSE](https://choosealicense.com/licenses) License. For more details, refer to the [LICENSE](https://choosealicense.com/licenses/) file.

---

## πŸ‘ Acknowledgments

- List any resources, contributors, inspiration, etc. here.

[**Return**](#-quick-links)

---

## πŸ‘€ Autor

**Osman Armando JimΓ©nez CortΓ©s**
[Portafolio profesional](https://osmanjimenez.com/)
[Perfil de GitHub](https://github.com/OsmanJimenez)

Ingeniero de Sistemas y Desarrollador Full Stack especializado en desarrollo web y aplicaciones mΓ³viles.