https://github.com/saba-var/jquery-movie-app
Unlimited movies, TV shows, your favorite people and more.
https://github.com/saba-var/jquery-movie-app
axios html javascript jquery tailwindcss
Last synced: about 2 months ago
JSON representation
Unlimited movies, TV shows, your favorite people and more.
- Host: GitHub
- URL: https://github.com/saba-var/jquery-movie-app
- Owner: Saba-Var
- Created: 2022-11-20T14:16:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-16T09:48:26.000Z (over 3 years ago)
- Last Synced: 2025-10-27T17:55:10.043Z (7 months ago)
- Topics: axios, html, javascript, jquery, tailwindcss
- Language: HTML
- Homepage: https://jquery-movies.netlify.app
- Size: 2.75 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
jQuery Movie App
Unlimited movies, TV shows, your favorite people and more.
- Production url: [jquery-movies.netlify.app](https://jquery-movies.netlify.app/)
## Table of Contents
- [](#)
- [Prerequisites](#prerequisites)
- [](#-1)
- [Tech Stack](#tech-stack)
- [](#-2)
- [Getting Started](#getting-started)
- [](#-3)
- [Git commit types](#git-commit-types)
- [Project Structure](#project-structure)
- [](#-4)
- [Resources](#resources)
#
## Prerequisites
-
_Node JS @12.X and up_
-
_npm @6 and up_
#
## Tech Stack
-
[[jQuery @3.6.1]](https://jquery.com/) - Fast, small, and feature-rich JavaScript library
-
[[tailwindcss @3.2.4]](https://tailwindcss.com/) - Open source CSS framework
-
[[axios @1.1.3]](https://axios-http.com/) - Promise based HTTP client for the browser
#
## Getting Started
1\. First of all you need to clone repository from github
```sh
git clone https://github.com/Saba-Var/jQuery-Movie-App.git
```
2\. Navigate to the repository
```sh
cd jQuery-Movie-App/
```
3\. Next step requires install all the dependencies
```sh
npm install
```
4\. Run application locally from the terminal:
```sh
npm run start
```
Open [http://127.0.0.1:8080](http://127.0.0.1:8080/) to view it in your browser.
#
## Git commit types
| Type | Description |
| -------- | --------------------------------------------------------------------- |
| fix | fix any bugs |
| feat | add new functionality |
| refactor | the code quality has been improved without changing the functionality |
| docs | improvement/addition of documentation |
## Project Structure
```bash
├─── assets
├─── constants
├─── css
├─── dist
├─── pages
│ ├── movies
│ │ ├── info
│ │ ├── search
│ │ ├── index.html
│ │ └── index.js
│ └── people
│ ├── info
│ ├── search
│ ├── index.html
│ └── index.js
├─── readme
│ └── assets
├─── services
├─── utils
│── .gitignore
│── .prettierrc.json
│── index.html
│── index.js
│── package.json
│── README.md
└── tailwind.config.js
```
#
## Resources
- [The Movie Database API](https://developers.themoviedb.org/3)