Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sanjaraiy/netflix_clone_mern_stack
This project is based on Mern Stack.
https://github.com/sanjaraiy/netflix_clone_mern_stack
Last synced: 5 days ago
JSON representation
This project is based on Mern Stack.
- Host: GitHub
- URL: https://github.com/sanjaraiy/netflix_clone_mern_stack
- Owner: sanjaraiy
- Created: 2024-03-19T16:50:05.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-04-21T21:38:41.000Z (7 months ago)
- Last Synced: 2024-04-22T01:47:43.631Z (7 months ago)
- Language: JavaScript
- 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"
}
```