Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gitfrandu4/angular-frontend-todolist
Otra todolist. Angular
https://github.com/gitfrandu4/angular-frontend-todolist
angular
Last synced: 6 days ago
JSON representation
Otra todolist. Angular
- Host: GitHub
- URL: https://github.com/gitfrandu4/angular-frontend-todolist
- Owner: gitfrandu4
- Created: 2021-11-14T00:58:15.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-18T13:14:35.000Z (about 3 years ago)
- Last Synced: 2023-12-09T19:42:38.922Z (about 1 year ago)
- Topics: angular
- Language: TypeScript
- Homepage:
- Size: 1.09 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Angular Frontend Todo list
Repasando Angular
## CORS policy
```
Access to fetch at 'http://localhost:5001/api/todos' from origin 'http://localhost:4200' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
```**Intercambio de Recursos de Origen Cruzado (CORS)** es una característica de seguridad del navegador que restringe las solicitudes HTTP de origen cruzado que se inician desde secuencias de comandos que se ejecutan en el navegador. Si los recursos de la API REST reciben solicitudes HTTP complejas de varios orígenes, debe habilitar la compatibilidad con CORS.
Más info: https://docs.aws.amazon.com/es_es/apigateway/latest/developerguide/how-to-cors.html
En resumen, las APIs por defecto se protegen para que nadie pueda hacerle una petición desde un dominio (subdominio, **puerto** o protocolo) diferente al utilizado por la propia API.
![CORS](https://mdn.mozillademos.org/files/14295/CORS_principle.png)