hello-world-nodejs:第 1 期

时间:2024-08-05 20:53:08
【文件属性】:

文件名称:hello-world-nodejs:第 1 期

文件大小:168KB

文件格式:ZIP

更新时间:2024-08-05 20:53:08

JavaScript

问题 1:NodeJS 的 Hello world 简单基础: 第 1 步:创建 server.js fly,内容如下: var http = require ( "http" ) ; http . createServer ( function ( request , response ) {   response . writeHead ( 200 , { "Content-Type" : "text/plain" } ) ;   response . write ( "Hello World" ) ;   response . end ( ) ; } ) . listen ( 8888 ) ; 第2步: node server . js 第三步:在浏览器中打开:


【文件预览】:
hello-world-nodejs-master
----.gitignore(526B)
----app.js(1KB)
----public()
--------about.html(141B)
--------img()
--------home.html(158B)
--------404.html(143B)
----README.md(438B)

网友评论