Postman

현재 데이터베이스에 저장된 비밀번호를 보면 너무 안전하지 않음 -> 그래서 Bcrypt를 이용해 비밀번호 암호화 후 데이터베이스에 저장해야 함! 1. bcrypt 라이브러리 다운 npm install bcrypt --save Bcrypt로 비밀번호 암호화 하는 순서 1. User.js에 bcypt라이브러리를 가져오고 2. usermodel에 정보를 저장하기 전 비밀번호를 암호화 시켜야 하기 때문에 User.js에 다음의 코드 추가 3. bcypt 사용을 위해 사이트 이동 https://www.npmjs.com/package/bcrypt bcrypt A bcrypt library for NodeJS.. Latest version: 5.1.0, last published: 3 months ago. Start..
Client에서 Server로 정보를 보낼 때 body-parser라는 dependency를 이용한다. body-parser : Body데이터를 분석(parse)해서 req.body로 출력해주는 것 1. 다음의 코드를 통해 body-parser를 다운받는다. npm install body-parser --save 2. PostMan 다운로드 지금 client에 data를 보낼 수 없으니 대신 PostMan을 이용한다. https://www.postman.com/ Postman API Platform | Sign Up for Free Postman is an API platform for building and using APIs. Postman simplifies each step of the API l..
korinj
'Postman' 태그의 글 목록