Skip to content

Wolfchamane/marvelwebapp

Repository files navigation

MARVEL WebApp - Arturo Martínez Díaz

Note

This application was part of a job interview process.

characters

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:

Run locally

With any static server solution

Notice: I'll be using http-server for this example

Run the following:

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:

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 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

About

MARVEL Web Application: explore characters, comics, stories, etc.

Topics

Resources

License

Stars

Watchers

Forks

Contributors