著作権表示:この記事はShaonPuppetによるオリジナル記事です。転載の元のアドレスを教えてください。ありがとうございます。 https://blog.csdn.net/wh211212/article/details/53038605
2、Node.jsのインストール
[ root@linuxprobe ~]# yum --enablerepo=epel -y install nodejs npm
[ wang@linuxprobe ~]$ vi helloworld.js
var http =require('http');
http.createServer(function(req, res){
res.writeHead(200,{'Content-Type':'text/plain'});
res.end('Hello World\n');}).listen(1337,'127.0.0.1');
console.log('listening on http://127.0.0.1:1337/');
# run server
[ wang@linuxprobe ~]$ node helloworld.js &[1]12440[wang@linuxprobe ~]$ listening on http://127.0.0.1:1337/
# verify(it's OK if following reply is back )[wang@linuxprobe ~]$ curl http://127.0.0.1:1337/
Hello World
[ wang@linuxprobe ~]$ npm install socket.io express
# Expressをインストールすると、次の警告が表示されます。Longitudeの母親は、この警告メッセージは無視できることを理解しています。この記事では、Nodeのインストールについてのみ紹介します。.ノード用のjs環境.js自体はあまり紹介していません。興味のある学生はこの警告を解決する方法を見つけることができます。
[ wang@linuxprobe ~]$ vi chat.js
var app =require('express')();var http =require('http').Server(app);var io =require('socket.io')(http);
app.get('/',function(req, res){
res.sendFile(__dirname +'/index.html');});
io.on('connection',function(socket){
socket.on('chat message',function(msg){
io.emit('chat message', msg);});});
http.listen(1337,function(){
console.log('listening on *:1337');});[wang@linuxprobe ~]$ vi index.html
<! DOCTYPE html><html><head><title>WebSocket Chat</title></head><body><form action=""><input id="sendmsg" autocomplete="off"/><button>Send</button></form><ul id="messages" style="list-style-type: decimal; font-size: 16px; font-family: Arial;"></ul><script src="/socket.io/socket.io.js"></script><script src="http://code.jquery.com/jquery.min.js"></script><script>var socket =io();$('form').submit(function(){
socket.emit('chat message',$('#sendmsg').val());$('#sendmsg').val('');returnfalse;});
socket.on('chat message',function(msg){$('#messages').append($('<li style="margin-bottom: 5px;">').text(msg));});</script></body></html>[wang@linuxprobe ~]$ node chat.js
listening on *:1337
クライアントコンピューターから「http://(サーバーのホスト名またはIPアドレス):1337 /」にアクセスして、サンプルアプリケーションが正しく機能することを確認します
# 開発の依存関係をインストールする
[ root@linuxprobe ~]# yum -y install gcc make gcc-c++ openssl-devel wget
# ソースコードをダウンロードして解凍します
[ root@linuxprobe ~]# wget https://nodejs.org/dist/v6.2.0/node-v6.2.0-linux-x64.tar.gz -P /usr/local/src
[ root@linuxprobe ~]# cd /usr/local/src && tar zxvf node-v6.2.0-linux-x64.tar.gz
# コンパイルしてインストール
[ root@linuxprobe src]# cd node-v6.2.0-linux-x64
# コンパイルとインストールは落とし穴です。最初に記入するのではなく、そのままにしておいてください。......
Recommended Posts