EmanoelLopes / marvel-spa-app

An Application made with React that consumes the Marvel API to get some Characters.

Home Page:https://marvelapiheroes.netlify.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React & Marvel API

Netlify Status

This project was bootstrapped with Create React App.

Stack

Install

First you need to clone and then, run the command bellow to install all dependences:

yarn install

!Important

This application uses enviroment variables as the Marvel API key, so you need to include a .env file with the following .env.sample file:

PORT=5001
SKIP_PREFLIGHT_CHECK=true
REACT_APP_MARVEL_SERVICE_ENDPOINT=https://gateway.marvel.com/
REACT_APP_MARVEL_API_KEY={YOUR_API_PUBLIC_KEY}

You can simply copy the contents of the .env.sample to a new .env file and add the API key at the REACT_APP_MARVEL_API_KEY variable.

!!! ATENTION: DOT NOT COMMIT YOUR ENVIROMENT (.env) FILES !!!

Run

To execute the project:

yarn start

App will run in the development mode.
Open http://localhost:5001 to view it in the browser. This application is provided with hot reload in any code edition and linters to help maitain the pattern.

Running with Docker:

Build image and create container

docker-compose build

Run application

docker-compose up react-app

Stop container

docker-compose stop

Remove container

docker-compose down

Tests

This application is also provided with unit tests and end-to-end tests.

Unit tests:

yarn test:unit

End-to-ened tests:

yarn test:e2e

Launches the Cypress test runner to run the End-to-end Tests. Important: your application should be running on background to execute e2e tests properly.

Production Build

yarn build

Builds the app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.
Your app is ready to be deployed!

Performance

This application aims to meet the requirements of Core Web Vitals. You can check performance through Pagespeed.

Pagespeed

About

An Application made with React that consumes the Marvel API to get some Characters.

https://marvelapiheroes.netlify.app/


Languages

Language:JavaScript 94.8%Language:HTML 4.7%Language:Dockerfile 0.5%