https://github.com/sanjaraiy/netflix_clone_mern_stack
This repository features a Netflix clone project built on the MERN (MongoDB, Express.js, React.js, Node.js) stack. Dive into a fully functional streaming platform replica with modern web technologies! 🚀💻
https://github.com/sanjaraiy/netflix_clone_mern_stack
express html5 javascript mongodb mvc-architecture nodejs react-hooks react-router reactjs redux-toolkit tailwindcss
Last synced: 3 months ago
JSON representation
This repository features a Netflix clone project built on the MERN (MongoDB, Express.js, React.js, Node.js) stack. Dive into a fully functional streaming platform replica with modern web technologies! 🚀💻
- Host: GitHub
- URL: https://github.com/sanjaraiy/netflix_clone_mern_stack
- Owner: sanjaraiy
- Created: 2024-03-19T16:50:05.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-21T21:38:41.000Z (about 2 years ago)
- Last Synced: 2025-07-25T05:58:16.912Z (11 months ago)
- Topics: express, html5, javascript, mongodb, mvc-architecture, nodejs, react-hooks, react-router, reactjs, redux-toolkit, tailwindcss
- Language: JavaScript
- Homepage:
- Size: 916 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Netflix Clone Using MERN Stack
## Create React App :-
```
npx create-react-app project_name
```
## Tailwind Setup :-
1) Install Tailwind CSS
```
npm install -D tailwindcss
npx tailwindcss init
```
2) Configure your template paths
```
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {},
},
plugins: [],
}
```
3) Add the Tailwind directives to your CSS
```
@tailwind base;
@tailwind components;
@tailwind utilities;
```
## Install React-router-Dom :-
```
npm i react-router-dom
```
## Install React Icons :-
```
npm install react-icons
```
## Install Backend Dependencies :-
```
npm i express mangoose nodemon dotenv b
cryptjs cookie-parser jsonwebtoken axios cors
```
## Setup Nodemon in index.js file:-
```
"scripts": {
"dev":"nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
}
```