먼저 node.js를 다운로드한 다음 E 드라이브에 압축을 풀고 node로 이름을 바꾼 다음 시작 메뉴에 cmd를 입력하고 cd 명령을 사용하여 nodejs 압축 해제 디렉터리로 전환합니다.
첫 번째 예: Hello World. 노드 디렉토리에 hello.js 파일을 생성한 후 다음을 입력합니다.
var sys = require("sys")
sys.puts("Hello world")
명명 테이블 Command node hello.js에 이를 입력하면 명명 콘솔 출력 Hello world를 볼 수 있습니다.
두 번째 예: hello world2. 자, 이번에는 브라우저에서 hello world를 출력해 보겠습니다. 노드 디렉터리에 http.js를 생성한 후 다음을 입력합니다.
var sys = require("sys"),
http = require("http")
http.createServer(function(request, response) {
response.sendHeader(200, {"콘텐츠 유형": "text/html"});
response.write("Hello World!")
response.close()
}).listen(8080); 🎜>sys.puts("http://localhost:8080/에서 실행되는 서버");
그런 다음 명명 플랫폼과 http://localhost에 노드 http.js를 입력합니다. 8080/ 브라우저
세 번째 예: hello world2.
node.js는 다양한 인코딩의 문자열을 변환하기 위한 Buffer 클래스를 제공합니다. 현재 'ascii', 'utf8', 'binary' 세 가지 유형이 지원됩니다. 여기
var Buffer = require('buffer').Buffer,
buf = new Buffer(256),
len = buf.write('u00bd u00bc = u00be', 0); " bytes: " buf.toString('utf8', 0, len));
네 번째 예: hello world3.
//synopsis.js
/ /synopsis 요약, 개요, 개요
var http = require('http')
http.createServer(function (요청, 응답) {
response.writeHead(200, { '콘텐츠 유형': 'text/plain'});
response.end('Hello Worldn')
}).listen(8124)
console.log('Server http://127.0.0.1:8124/'에서 실행);
프런트 엔드 주소 표시줄: http://localhost:8124/
다섯 번째 예: C 파일 컴파일
#include # include int main(){ printf("Hello World!!!"); 종료(0) }