There is no excerpt because this is a protected post.
Protected: NODEJS-1-1
There is no excerpt because this is a protected post.
Protected: [nodejs]facebook nodejs-1
There is no excerpt because this is a protected post.
[nodejs]비밀번호 암호화하기 / Encrypt password
회원 가입된 사용자의 비밀번호가 의도치 않게 노출될 수 있습니다Passwords of registered users may be exposed unintentionally.. 그래서 사용자의 개인 정보가 해킹되거나 악용되는 것을 방지하기 위해서 비밀번호를 암호화 시키는게 […]
[nodejs]간단한 회원가입 페이지 만들기 / Simple Create a simple membership registration page
회원가입 페이지를 만들기 위해서 post 데이터 전송 방식을 사용해야 합니다.To create a membership registration page, you must use the post data transmission method. 먼저 이 포스트를 보기 전에 […]
[nodejs]모듈만들기 / Create a module
모듈을 사용하면 좀 더 가독성이 좋아집니다.Using modules makes it more readable. 특별히 기능별로 모듈을 구성하면 이해하기 편합니다.It is easier to understand if you organize modules by function. 이 […]
[nodejs]EJS사용하기-코드설명/Using EJS – Code Explanation – 2
바로 이전 포스트의 Server.js 및 test.ejs 코드 설명입니다.This is the explanation of the Server.js and test.ejs code from the previous post. 1.모듈추가 부분(Module addition part)– ejs와 express,path모듈을 추가합니다.– […]
[nodejs]EJS사용하기/Using EJS – 1
브라우저의 웹페이지에서 바로 물리적인 서버에접근하는것이 기본적으로는 불가능합니다.그래서 asp,php,jsp같은 Server side script가 만들어졌습니다. asp,php,jsp를 사용해보신 분들이 EJS(Embedded JavaScript templates for node)를 사용하면 이해가 쉽습니다.기존의 server-side script언어와 매우 유사한 점이 […]
[Nodejs]mysql+promise
mysql+promise 사용에 대한 코드 입니다.굵은글씨 부분이 mysql과 promise를 사용하는부분입니다.아래와 같이 사용하시면 mysql작업을 순서대로 처리 할 수 있습니다.rows변수 부분이 제일 처음 작업이 끝나면 rows2부분의 작업을 시작합니다. This is code […]