JustStreamIt is a movie catalog that shows a sample of the best rated movies ever.
This repository contains the implementation code of my web view for JustStreamIt, all the data comes from the API provided by this repository.
I made a fantastic ligth-theme netflix design (yikes) for the occasion.
I used vite.js as a build tool because it leverages native EcmaScript Modules which allows a better project structure and makes HMR faster.
You should have Node.js setup on your machine.
Then you can install the project dependencies.
npm install
Starting the development server is as simple as follows.
npm run dev
You might want to try the production build, this will compile the SASS files to a CSS file with vendor prefixes, and bundle our javascript code with eventual polyfills.
npm run build
The production website can be previewed with npm run preview.