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
- Host: GitHub
- URL: https://github.com/osmanjimenez/crud_ionic_express
- Owner: OsmanJimenez
- Created: 2023-10-21T15:31:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-04T00:50:57.000Z (about 1 year ago)
- Last Synced: 2025-06-04T08:09:47.622Z (about 1 year ago)
- Topics: angular, express-js, ionic, typescript
- Language: TypeScript
- Homepage:
- Size: 403 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
CRUD_IONIC_EXPRESS
Developed with the software and tools below.
## π 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.