A simple Remix application that fetches and displays movie and series streaming availability information using the Streaming Availability API on RapidAPI.
I am using the free version of the API, which limits the number of requests to 100 per day.
It also returns me only 8 results per request, that's why all the movies and series aren't loaded at once. But I instead prefetch them
- Browse and search for movies and series
- View streaming availability for multiple platforms
- Clean and responsive user interface
- Node.js 14.x or higher
- npm or yarn package manager
- Clone the repository:
git clone https://github.com/Mavrick91/Shows-rating.git
cd Shows-rating
- Install dependencies:
npm install
or
yarn install
- Create a
.env.local
file in the root directory of the project and add your RapidAPI key:
REACT_APP_RAPIDAPI_KEY=your_rapidapi_key
- Start the development server:
npm run dev
or
yarn dev
- Open your browser and navigate to http://localhost:3000.
- Fork the repository on GitHub.
- Clone the forked repository to your local machine.
- Create a new branch for your feature or bugfix.
- Make your changes and commit them to your branch.
- Push your changes to your fork on GitHub.
- Create a pull request on the original repository.