Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yunyoungsik/auth-tutorial

React와 tainlwind, MogoDB, Zustand를 활용하여 제작한 웹 사이트입니다.
https://github.com/yunyoungsik/auth-tutorial

backend frontend mogodb react zustand

Last synced: 6 days ago
JSON representation

React와 tainlwind, MogoDB, Zustand를 활용하여 제작한 웹 사이트입니다.

Awesome Lists containing this project

README

        

# Auth Tutorial

[참고영상](https://youtu.be/pmvEgZC55Cg?si=Md0ycCec1aoQFrgw)

## 설치

```
[backend]
npm install express cookie-parser mailtrap bcryptjs dotenv jsonwebtoken mongoose crypto
npm i nodemon -D
npm i cors
npm install cross-env --save-dev

[Linux, macOS]
"scripts": {
"dev": "NODE_ENV=development nodemon backend/index.js",
"start": "NODE_ENV=production node backend/index.js",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend"
},
[window]
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon backend/index.js",
"start": "cross-env NODE_ENV=production node backend/index.js",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend"
}

[frontend]
npm create vite@latest .
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
npm i react-router-dom
npm i framer-motion
npm i lucide-react
npm i zustand
npm i axios
npm i react-hot-toast
```