ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • [Nodejs] - 개발 환경 구축하기
    Nodejs 2016. 6. 12. 02:18

    Nodejs
    Node.js - https://nodejs.org/en/

     

    LTS Version Download

     

    Code app.js 

    var http = require('http'); 
    http.createServer(function (request, response) { 
    	response.writeHead(200, {'Content-Type': 'text⁄html'}); 
    	response.end('<h1>Hello World!<⁄h1>'); 
    }).listen(52273, function () { 
    	console.log('Server Running at 127.0.0.1:52273'); 
    });

    Git Bash, Terminal

    node app.js 

     

     

    Nodejs 서버 종료 

    1. Git Bash 에서 실행하였을 경우 종료는 [Ctrl] + [C] 

    2. Sublime Text 에서 실행하였을 경우 작업관리자에서 종료 이름 - [Node.js: Server-side JavaScript]

    댓글

Designed by Tistory.