https://github.com/jsilva-pt/iframes-communication
https://github.com/jsilva-pt/iframes-communication
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jsilva-pt/iframes-communication
- Owner: jsilva-pt
- Created: 2021-04-24T11:00:29.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-24T11:11:30.000Z (about 4 years ago)
- Last Synced: 2025-01-18T06:53:10.566Z (4 months ago)
- Language: JavaScript
- Size: 191 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# iframes-communitcation
It is available several ways to start the project. Pick the on that suits you the best.
## Manual setup```sh
yarn install
yarn serve-parent # http://localhost:8080
yarn serve # http://localhost:8081
yarn serve # http://localhost:8082
```Then open http://localhost:8080 to test the communication between iframes.
## docker-compose setup
```sh
# install dependencies and start containers
docker-compose up -d# stop and remove containers
docker-compose down
```## Makefile setup
It uses docker-compose under the hood```sh
# install dependencies and start containers
make up# stop and remove containers
make down
```## Unit Tests
```sh
yarn test:unit
```