Node/Express 개발 환경 설정 방법
1969 단어 setupnodedevelopmentexpress
Node/Express 개발 환경 설정 방법
본 강좌에서 Node/Express 개발 환경을 설정하는 방법을 보여 드리겠습니다. Nodejs, NPM 패키지 설치, 선택할 수 있는 'Express Application Generator' 를 포함합니다.
설치 노드
다운로드한 파일을 두 번 클릭하고 설치 지침을 따르십시오.
Nodejs 및 NPM 설치를 테스트합니다.
>node -v
v8.11.1
>npm -v
5.6.0
"Hello World"를 만듭니다.http 모듈을 사용하여 Nodejs 서버createServer()
를 만듭니다.
//Load HTTP module
var http = require("http");
//Create HTTP server and listen on port 8000 for requests
http.createServer(function (request, response) {
// Set the response HTTP header with HTTP status and Content type
response.writeHead(200, {'Content-Type': 'text/plain'});
// Send the response body "Hello World"
response.end('Hello World\n');
}).listen(8000);
// Print URL for accessing server
console.log('Server running at http://127.0.0.1:8000/')
서버를 시작하려면:자세한 내용은 다음을 참조하십시오.
https://grokonez.com/node-js/how-to-setup-node-express-development-environment
Reference
이 문제에 관하여(Node/Express 개발 환경 설정 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/loizenai/how-to-setup-node-express-development-environment-3p33텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)