일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 정수내림차순으로배치하기
- HTML
- 프로그래밍언어
- 한국재정정보원
- algorithm
- 공부
- 웹프로그래밍
- 농은면접
- 이클립스
- java
- 부스트코스
- 웹
- 필기후기
- 수박수박수박수박수?
- BOJ
- 건보필기
- 코딩
- 후기
- 중소기업면접
- 확인문제
- 웹개발
- 필기
- 인강
- 알고리즘
- 프로그래밍
- Linux
- 프로그래머스
- 연결요소의개수
- 백준
- CSS
- Today
- Total
목록전체 글 (168)
공부하는 히욤이
body-parse client에서 보내주는 req.body 값을 지정된 형태로 받을 수 있게 하는 미들웨어 express 4.16버전 이전에는 body-parser를 설치해야 사용할 수 있었지만 4.16 버전부터는 express 내부에 body-parser가 포함되어 있기 때문에 따로 import를 해 줄 필요가 없다. 만약, 4.16 이후 버전에서 body-parser를 import해서 사용할 경우 'bodyParser' is deprecated 가 뜨면서 bodyParser에 줄이 그어진다. 2. index.js bodyparser를 사용하는 대신 다음과 같이 작성하였다. const express = require('express'); const app = express(); //새로운 expres..
User Schema 생성 Model : Schema를 감싸주는 역할 1. models 폴더 생성 C:\react-node\boiler-plate> mkdir models 2. User schema 생성 const mongoose = require('mongoose'); // Schema 생성 const userSchema = mongoose.Schema({ name : { type : String, maxlength : 50 }, email : { type : String, trim : true, //빈칸을 없애주는 역할 unique : 1 }, password : { type : String, minlength :50 }, role : { type : Number, default : 0 }, imag..
Mongodb Cluster 생성 MongoDB 홈페이지에서 회원가입을 한다. https://mongodb.com/ The most popular database for modern apps We're the creators of MongoDB, the most popular database for modern apps, and MongoDB Atlas, the global cloud database on AWS, Azure, and GCP. Easily organize, use, and enrich data — in real time, anywhere. www.mongodb.com 1. Build a Database 2. shared 선택 별 모양이 있는 나라 아무곳이나 선택한다 다른건 손대지 말고 C..
Node에서 mongoose를 이용해 MongoDB를 연동하려고 했는데 다음과 같은 에러가 발생했다. MongooseServerSelectionError: Could not connect to any servers in your MongoDB Atlas cluster. One common reason is that you're trying to access the database from an IP that isn't whitelisted. Make sure your current IP address is on your Atlas cluster's IP whitelist: https://docs.atlas.mongodb.com/security-whitelist/ at NativeConnection.Con..
Node.js Node.js는 JavaScript를 서버 사이드에서 쓸 수 있는 언어 Express.js Node.js를 좀 더 쉽게 사용할 수 있게 해주는 프레임워크 Node.js, Express.js 예제 1. boiler-plate 생성 c:\react-node> mkdir boiler-plate c:\react-node> cd boiler-plate c:\react-node\boiler-plate> npm init boiler-plate 폴더 안에 다음과 같은 package.json이 생성됨 2. index.js 파일 생성 (backend의 시작점) 3. express 다운로드 c:\react-node\boiler-plate> npm i express package.json에 dependencie..