javascript/node.js

test archive
[Node.js] Express를 이용한 간단한 웹서버 만들기
·javascript/node.js
npm install express시작하기에 앞서 Express모듈이 없다면 터미널에서 설치를 해야한다.   var express = require('express');설치가 완료되었다면 express라는 모듈을 프로젝트에 로드한다.   var app = express();express 모듈은 함수이기 때문에 app 변수에 저장한다.   app.listen(3000, function () { console.log('Connected 3000 port!');})app에는 listen이라는 메서드가 있다.메서드에 인자로 포트번호를 지정해주면 해당 포트를 listening할 수 있게 된다.listening에 성공한다면 funtion()이라는 콜백함수가 실행되면서 'Connected 3000 port!'가..
[Node.js] Node.js 간단한 웹서버 만들기
·javascript/node.js
Node.js에서 제공하는 기본 코드가 있다.이를 이용해 간단한 서버 테스트를 할 수 있다.   const http = require('http');우선 http 변수를 선언하고, http 모듈을 가져온다.   const hostname = '127.0.0.1';const port = 1337;다음 hostname 변수를 선언하고, ip를 할당해준다.127.0.0.1 은 자기자신의 IP를 의미한다.그리고 임의의 포트번호를 설정해준다.    http.createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end('Hello World\n');}).listen(port, hostname, () => { ..
alwayswithsound
'javascript/node.js' 카테고리의 글 목록 (2 Page)