postman
-
[Node.js] postman을 이용하여 회원가입 기능 구현하기웹/Node.js & React.js 2022. 2. 12. 01:00
- 명령 프롬프트 창에 node 설치 - node.js의 프레임워크인 express 설치 - mongoDB, mongoose 설치 - ssh 키 생성하여 github에 ssh키 설정 - 서버올리기 : npm start run ( run은 package.json에서 내가 임의로 설정해줌) - nodemon(서버 변경상태 실시간 감지) : npm start backend ( backend는 package.json에서 내가 임의로 설정해줌) package.json - 설치된 패키지들을 관리 - start시, index.js가 먼저 실행되게 함 { "name": "boiler-plate", "version": "1.0.0", "description": "", "main": "index.js", "scripts"..