react node.js 회원가입 정리
회원가입 로그인 https://minjoo-space.tistory.com/61 BrouserRouter vs HashRouter [React] BrowserRouter VS HashRouter BrowserRouter VS HashRouter 강의에서도 그렇고 책에서도 그렇고 라우터를 사용할 때 이때는 이 라우터가 좀 더 효율적이고,,,이런 말들이 많았다. 나는 이 설명들이 한 번에 이해가 안갔기 때문에 라 minjoo-space.tistory.com 로그아웃 props https://react.vlpt.us/basic/05-props.html 5. props 를 통해 컴포넌트에게 값 전달하기 · GitBook 5. props 를 통해 컴포넌트에게 값 전달하기 이번에는 컴포넌트의 props 라는 개념에..
어플리케이션 배포 HeroKu
우선적으로 HeroKu가 설치가 되어있어야한다. main 을 app.js 로 수정 scripts를 start: node app.js engines도 현재 사용자의 node version을 확인해서 추가해준다. 참고... node version 체크 방법 다시 git add . -> git commit -m " " -> git push heroku master 이 세가지 과정을 꼭 해주어야한다. 그래야 수정한 파일이 heroku에 업로드 되기 때문이다. --- 위 과정만 거쳐도 배포가능---- ----부록----- 간단해보이지만 필자는 6시간 정도 에러때문에 고생했다. H10, H12 때문이였는데 이를 해결하기 위해 삽질했던 기록을 남긴다. 1. 0.0.0.0/0 IP Address를 추가했다. 2. 저 ..
어플리케이션 배포 Mongo Atlas
현재 내가 만든 프로젝트는 나의 WorkStation인 local:3000에서 동작중이다. 나는 이를 배포하기 위해 node.js 서버는 Heroku db는 mongoDB Atlas에 연결시켜 배포할 생각이다. 우선 mongoDB Atlas 부터 시작하자. 우선 몽고DB에 로그인하고 데이터베이스를 생성해준다. 무료를 선택한다. 그리고 보안카테고리에서 Database Access , Network Access를 creat 해준다. connect를 선택해준다. MongoDB Shell과 Cluster 연결방법 https://www.mongodb.com/try/download/shell MongoDB Shell Download The MongoDB Shell is a modern command-line exp..
mongo
좌측은 mongo 실행 우측은 mongod을 실행한 것 입니다. https://docs.mongodb.com/manual/core/document/ Documents — MongoDB Manual Docs Home → MongoDB ManualMongoDB stores data records as BSON documents. BSON is a binary representation of JSON documents, though it contains more data types than JSON. For the BSON spec, see bsonspec.org. See also BSON Types.MongoDB documents are compo docs.mongodb.com find() 명령어는 prod..
몽고디비
메일인증 까지 완료하면.. 이제 다운로드를 해보자! Products -> Community Server -> Package에서 MSI 선택 -> download 몽고DB가 잘 설치되었는지 확인하자! 아래의 경로로 들어가 bin 폴더에 접근할 수 있다. 이제 MongoDB가 데이터를 저장할 데이터 폴더를 설정하자. C드라이브에 data 폴더를 만들고 data 폴더안에 db 폴더를 만든다. ---------------------------------------------------------굳이 안해도됨 --------------------------------------- 이제 command 창에서 https://medium.com/@LondonAppBrewery/how-to-download-install..