목록유튜브컨텐츠탐색-StelLife (35)
안녕하세요
MongoDB 연결 Atlas DB만들기 https://sakuraop.tistory.com/407 터미널에서 MongoDB 설치하기 $ npm i mongodb@3.6.4 server.js (서버 파일)에서 다음 코드를 입력하기 const mongoUri = process.env.REACT_APP_DB_ACCESS; const mongoUri = "mongodb+srv://디비계정아이디:디비계정패스워드@cluster0-qaxa3.mongodb.net/데이터베이스이름?retryWrites=true&w=majority"; => 주소를 변수에 담고 const { MongoClient } = require("mongodb"); => MongoClient 모듈을 불러오고 const client = new Mon..
REACT로 서버 구현 express 설치하기 $ npm i express cors 설치하기 $ npm install cors nodemon 설치하기 (저장할 때마다 자동으로 서버를 재실행 해서 편리해짐) $ npm i -g nodemon 그리고나서 nodemon concurrently를 설치해줍니다. (필요하다면) npm install nodemon concurrently --save-dev , "server": "nodemon server", "client": "npm start", "dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client" const express = require("express"); const p..
REACT로 서버 구현부터 MongoDB 연결까지 npm i sass npm i bootstrap-icons express 설치하기 $ npm i express cors 설치하기 $ npm install cors nodemon 설치하기 (저장할 때마다 자동으로 서버를 재실행 해서 편리해짐) $ npm i -g nodemon 그리고나서 nodemon concurrently를 설치해줍니다. (필요하다면) npm install nodemon concurrently --save-dev , "server": "nodemon server", "client": "npm start", "dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run cli..