BIG
node.js 설치 후 정상적인 설치 여부 확인용
샘플 TEST Code
File Name : nodejs_test_02.js |
const http = require('http'); const hostname = '127.0.0.1'; const port = 1337; http.createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end('Hello World\n'); }).listen(port, hostname, () => { console.log(`Server running at http://${hostname}:${port}/`); }); |
// 1. 위 작성된 파일을 실행한다. shell> node nodejs_test_02.js // 작성된 파일 // 2. 웹 브라우져를 통해 접속한다. // 3. 브라우져에 Hello World 가 출력되면 성공 |
LIST
'!!...nodejs' 카테고리의 다른 글
[nodejs] - ftp client 구현 샘플 (0) | 2022.10.05 |
---|---|
[nodejs] - puppeteer 환경 구성하기 (0) | 2020.08.25 |
[nodejs] - 웹 페이지 크롤링 티스토리 개인 관리자 로그인 후 캡쳐 - casperjs 모듈 이용 - (0) | 2017.05.30 |
[nodejs] - 웹 페이지 크롤링 샘플 01 - cheerio 모듈 이용 - (0) | 2017.05.29 |
[nodejs] - Centos 6.7 64-bit node.js 설치하기 (0) | 2017.05.26 |