https://github.com/wolfchamane/marvelwebapp
MARVEL Web Application: explore characters, comics, stories, etc.
https://github.com/wolfchamane/marvelwebapp
eslint marvel prettier react sass typescript vite webapp
Last synced: 2 months ago
JSON representation
MARVEL Web Application: explore characters, comics, stories, etc.
- Host: GitHub
- URL: https://github.com/wolfchamane/marvelwebapp
- Owner: Wolfchamane
- License: mit
- Created: 2025-02-13T10:50:49.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2026-04-07T07:38:08.000Z (2 months ago)
- Last Synced: 2026-04-07T09:28:56.925Z (2 months ago)
- Topics: eslint, marvel, prettier, react, sass, typescript, vite, webapp
- Language: TypeScript
- Homepage: https://wolfchamane.com/marvelwebapp/
- Size: 48.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MARVEL WebApp - Arturo Martínez Díaz
> [!NOTE]
> This application was part of a job interview process.
- Website: https://wolfchamane.com/marvelwebapp/
- Version: **0.2.2**

## Features
Fetches information from https://gateway.marvel.com/ API to create a web application where user can:
- List over 50 characters.
- Get detailed information about any of them.
- Mark his/her favourites.
## ToDo's
- [ ] Improve user navigation.
- [ ] Support user's session storage.
- [ ] Support pagination.
- [ ] Support advanced filtering.
- [ ] Add unitary & e2e tests.
- [ ] Add landing/exploring page with multiple collections.
- [ ] Add error pages.
- [ ] Extend character's details.
## Technology stack
This web application has been developed using:
- [React](https://react.dev/) + [React Router](https://reactrouter.com/) + [Redux](https://redux.js.org/), as primary libraries for development.
- [Typescript](https://www.typescriptlang.org/) & [SaSS](https://sass-lang.com/) syntaxes for enhanced EMACScript and CSS.
- [Vite](https://vite.dev/) as primary utility for development.
- [eslint](https://eslint.org/) and [prettier](https://prettier.io/) for source code linting and format.
## Run locally
### With any static server solution
> Notice: I'll be using `http-server` for this example
Run the following:
```bash
npm run build-only
# We need to create the fake URL path of the end domain
mkdir -p dist/marvelwebapp
mv dist/assets/ dist/marvelwebapp/
mv dist/index.html dist/marvelwebapp/
# Now we can serve the statics
cd dist
http-server
```
Then open your browser at http://127.0.0.1:8080/marvelwebapp/.
### Within Docker
Run the following:
```bash
docker build --build-arg API_KEY=${your_api_key_here} -t marvelwebapp .
docker run -d -p 8080:80 marvelwebapp
```
Then open your browser at http://localhost:8080/.
## LICENSE
About web application:
> See [LICENSE](LICENSE) file for information about **only** the web application and its source code.
About the API and it's content:
> [Data provided by Marvel. © 2025 MARVEL](https://marvel.com)