Learn Nodejs 01
2379 ワード
(1)nodejsをダウンロードする
https://nodejs.org/download/
対応するバージョンを選択してダウンロードします.
(2)nodejsを取り付ける
取り付け方式が多いので、baiduでお願いします.
こちらでダウンロードしたのは「node-v 0.2.7-linux-x 64.tar.gz」というバージョンです.
(1)アップロードサーバ
(2)ストレス解消
tar-zxvf
node-v 0.2.7-linux-x 64.tar.gz
(3)取り付けが成功したかどうかを検出する
//database/nodejs/node-v 0.2.7-linux-x 64/bin
[root@localhost ビン ./node -v 0.2.7
(3)ハローワールドの作成
(3.1)ワークエリアワークスペースの新規作成
(3.2)新規作成第一項目ハロルド
//database/nodejs/workspace/hellowworld
(3.3)jsを作成する
vim first.js
公式サイトのコードをコピーします.
var http = require('http')
http.creat Server(function) (req レスス {
res.writeHead(200、 {Conteet Type}: 'text/plin')
res.end('Hello) World
).listen(1337, '202.1.102.8.3.169;)
consolone.log('Server.) ルニーニング at. http://202.102.83.169:1337/')
注意点:この時に訪問します.http://202.102.83.169:1337/」無効
server.listen(port,[hostname],[backlog],[calback]
Begin accepting connections on the specified port and hostname. If the hostname is omitted、the server will accept connected to any IPv 4 address.
中でHostnameを無視したら、サーバーはすべてのIPV 4アドレスのリンクを受け取ります.IPv 4アドレスは127.1.0.1 local hostとローカルIPを含みます.APIをよく見ていません.これからは注意してください.そうすると、ローカルIP、local host、127..0.1を傍受することができます.
?
1
2
3
4
5
var http=require('http')
http.creat Server(function) (req,res){
res.writeHead(200、{Content-Type}: 'text/plin')
res.end('Hello World')
).listen(1337)
(3.4)サービスの開始
[root@localhost ビン ./node /database/nodejs/workspace/hellowworld/first.js
Server ルニーニング at. http://127.0.0.1:1337/
(3.5)サービス開始
ブラウザアクセス
https://nodejs.org/download/
対応するバージョンを選択してダウンロードします.
(2)nodejsを取り付ける
取り付け方式が多いので、baiduでお願いします.
こちらでダウンロードしたのは「node-v 0.2.7-linux-x 64.tar.gz」というバージョンです.
(1)アップロードサーバ
(2)ストレス解消
tar-zxvf
node-v 0.2.7-linux-x 64.tar.gz
(3)取り付けが成功したかどうかを検出する
//database/nodejs/node-v 0.2.7-linux-x 64/bin
[root@localhost ビン ./node -v 0.2.7
(3)ハローワールドの作成
(3.1)ワークエリアワークスペースの新規作成
(3.2)新規作成第一項目ハロルド
//database/nodejs/workspace/hellowworld
(3.3)jsを作成する
vim first.js
公式サイトのコードをコピーします.
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World
');
}).listen(1337, '202.102.83.169');
console.log('Server running at http://202.102.83.169:1337/');
[root@localhost ハロルド. cat first.js var http = require('http')
http.creat Server(function) (req レスス {
res.writeHead(200、 {Conteet Type}: 'text/plin')
res.end('Hello) World
).listen(1337, '202.1.102.8.3.169;)
consolone.log('Server.) ルニーニング at. http://202.102.83.169:1337/')
注意点:この時に訪問します.http://202.102.83.169:1337/」無効
server.listen(port,[hostname],[backlog],[calback]
Begin accepting connections on the specified port and hostname. If the hostname is omitted、the server will accept connected to any IPv 4 address.
中でHostnameを無視したら、サーバーはすべてのIPV 4アドレスのリンクを受け取ります.IPv 4アドレスは127.1.0.1 local hostとローカルIPを含みます.APIをよく見ていません.これからは注意してください.そうすると、ローカルIP、local host、127..0.1を傍受することができます.
?
1
2
3
4
5
var http=require('http')
http.creat Server(function) (req,res){
res.writeHead(200、{Content-Type}: 'text/plin')
res.end('Hello World')
).listen(1337)
(3.4)サービスの開始
[root@localhost ビン ./node /database/nodejs/workspace/hellowworld/first.js
Server ルニーニング at. http://127.0.0.1:1337/
(3.5)サービス開始
ブラウザアクセス