検索
AND検索
OR検索
トップ
|
リロード
|
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
実験サーバについて/Node.jsについて をテンプレートにして作成
メニュー
最新のお知らせ
掲示板
実験サーバについて
ご提供条件
ご提供サービス
PHPについて
Ruby on Railsについて
Redmineについて
Node.jsについて
FAQ
最新の10件
2024-07-04
お知らせ
2023-07-12
実験サーバについて/Redmineについて
2022-08-22
実験サーバについて/Ruby on Railsについて
2022-08-01
実験サーバについて/ご提供サービス
2021-08-23
掲示板/11
2021-07-14
掲示板/12
2020-06-03
RecentDeleted
2018-07-26
実験サーバについて/ご提供条件
実験サーバについて/PHPについて
2016-11-15
掲示板/10
Total:0/Today:0
開始行:
#contents
*Node.jsのご利用方法 [#b30100f6]
nodeコマンドで作成したスクリプトを実行して下さい。~
例)% node app.js
**Hello, world!と出力するHTTPサーバスクリプトの例 [#f2ff4...
+ポート番号3000で動作します。次の内容をテキストエディタで...
httpd.jsというファイル名で保存して下さい。
(ポート番号はwell-knownポート内で自由に変更して下さい)~
var http = require('http');
var port = 3000;
var server = http.createServer(function(req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello, world!\n');
});
server.listen(port);
console.log('Server running *:' + port);
+nodeコマンドでhttpd.jsを実行して下さい。
% node httpd.js
Server running *:3000
+ウェブブラウザから http://お客様のドメイン:3000 に接続し...
Hello, world!という文字列が表示されていれば正常に実行され...
*npmコマンド [#vce0764b]
socket.ioなどのパッケージをインストールできます。~
**初期設定 [#i40a7c8d]
+スクリプト等を設置するディレクトリを用意してその中に移動...
% mkdir nodejs
% cd nodejs
+npm initを実行して名前等を自由に入力して下さい。
% npm init
This utility will walk you through creating a package.js...
It only covers the most common items, and tries to guess...
See `npm help json` for definitive documentation on thes...
and exactly what they do.
Use `npm install <pkg> --save` afterwards to install a p...
save it as a dependency in the package.json file.
Press ^C at any time to quit.
name: (node2)
version: (1.0.0)
description:
entry point: (index.js)
test command:
git repository:
keywords:
author:
license: (ISC)
About to write to /home/22/ex1200/node2/package.json:
{
"name": "node2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
Is this ok? (yes)
+package.jsonというファイルが作成されれば完了です。
**パッケージのインストール [#sde457ff]
npm installでインストールできます。
% npm install パッケージ名
*socket.ioのご利用方法 [#k9742fec]
インストールされておりませんのでnpmコマンドを使ってインス...
**インストール [#r79d6496]
npm installコマンドを使用してインストールすることが出来ま...
+package.jsonを作成したディレクトリにいない場合は、そこに...
% cd nodejs
+npmコマンドでsocket.ioをインストールして下さい。
% npm install socket.io
npm WARN package.json node2@1.0.0 No description
npm WARN package.json node2@1.0.0 No repository field.
npm WARN package.json node2@1.0.0 No README data
> ws@0.4.31 install /home/22/ex1200/node2/node_modules/s...
> (node-gyp rebuild 2> builderror.log) || (exit 0)
gmake: ディレクトリ `/home/22/ex1200/node2/node_modules/...
CXX(target) Release/obj.target/bufferutil/src/bufferut...
SOLINK_MODULE(target) Release/obj.target/bufferutil.node
COPY Release/bufferutil.node
CXX(target) Release/obj.target/validation/src/validati...
SOLINK_MODULE(target) Release/obj.target/validation.node
COPY Release/validation.node
gmake: ディレクトリ `/home/22/ex1200/node2/node_modules/...
> ws@0.4.31 install /home/22/ex1200/node2/node_modules/s...
> (node-gyp rebuild 2> builderror.log) || (exit 0)
gmake: ディレクトリ `/home/22/ex1200/node2/node_modules/...
CXX(target) Release/obj.target/bufferutil/src/bufferut...
SOLINK_MODULE(target) Release/obj.target/bufferutil.node
COPY Release/bufferutil.node
CXX(target) Release/obj.target/validation/src/validati...
SOLINK_MODULE(target) Release/obj.target/validation.node
COPY Release/validation.node
gmake: ディレクトリ `/home/22/ex1200/node2/node_modules/...
socket.io@1.1.0 node_modules/socket.io
├── debug@0.7.4
├── has-binary-data@0.1.3 (isarray@0.0.1)
├── socket.io-parser@2.2.1 (isarray@0.0.1, component-em...
├── socket.io-adapter@0.2.0 (socket.io-parser@2.1.2)
├── engine.io@1.4.0 (base64id@0.1.0, debug@1.0.3, engin...
└── socket.io-client@1.1.0 (to-array@0.1.3, indexof@0.0...
+カレントディレクトリにnode_modulesディレクトリが作成され...
**socket.ioを利用したチャットプログラムの例 [#tf0db073]
公式サイトのチュートリアル(http://socket.io/get-started/...
+package.jsonを作成したディレクトリにいない場合は、そこに...
% cd nodejs
+npmコマンドでexpressをインストールして下さい。
※ --saveオプションをつけて下さい。
% npm install --save express
npm WARN package.json node2@1.0.0 No description
npm WARN package.json node2@1.0.0 No repository field.
npm WARN package.json node2@1.0.0 No README data
express@4.9.7 node_modules/express
├── utils-merge@1.0.0
├── merge-descriptors@0.0.2
├── fresh@0.2.4
├── cookie@0.1.2
├── escape-html@1.0.1
├── range-parser@1.0.2
├── cookie-signature@1.0.5
├── finalhandler@0.2.0
├── vary@1.0.0
├── media-typer@0.3.0
├── methods@1.1.0
├── parseurl@1.3.0
├── serve-static@1.6.4
├── path-to-regexp@0.1.3
├── depd@0.4.5
├── on-finished@2.1.0 (ee-first@1.0.5)
├── qs@2.2.4
├── debug@2.0.0 (ms@0.6.2)
├── proxy-addr@1.0.3 (forwarded@0.1.0, ipaddr.js@0.1.3)
├── etag@1.4.0 (crc@3.0.0)
├── send@0.9.3 (destroy@1.0.3, ms@0.6.2, mime@1.2.11)
├── accepts@1.1.2 (negotiator@0.4.9, mime-types@2.0.2)
└── type-is@1.5.2 (mime-types@2.0.2)
+次の内容をテキストエディタで作成して、index.htmlというフ...
<!doctype html>
<html>
<head>
<title>Socket.IO chat</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font: 13px Helvetica, Arial; }
form { background: #000; padding: 3px; position: f...
form input { border: 0; padding: 10px; width: 90%;...
form button { width: 9%; background: rgb(130, 224,...
#messages { list-style-type: none; margin: 0; padd...
#messages li { padding: 5px 10px; }
#messages li:nth-child(odd) { background: #eee; }
</style>
</head>
<body>
<ul id="messages"></ul>
<form action="">
<input id="m" autocomplete="off" /><button>Send</b...
</form>
<script src="/socket.io/socket.io.js"></script>
<script src="http://code.jquery.com/jquery-1.11.1.js...
<script>
var socket = io();
$('form').submit(function(){
socket.emit('chat message', $('#m').val());
$('#m').val('');
return false;
});
socket.on('chat message', function(msg){
$('#messages').append($('<li>').text(msg));
});
</script>
</body>
</html>
+次の内容をテキストエディタで作成して、index.jsというファ...
var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io')(http);
app.get('/', function(req, res){
res.sendfile('index.html');
});
io.on('connection', function(socket){
socket.on('chat message', function(msg){
io.emit('chat message', msg);
});
});
http.listen(3000, function(){
console.log('listening on *:3000');
});
+nodeコマンドでindex.jsを実行して下さい。
% node index.js
listening on *:3000
+ウェブブラウザから http://お客様のドメイン:3000 に接続し...
チャット画面が表示されていれば正常に実行されています。~
ブラウザを2個起動しそれぞれの画面からアクセスして、同時に...
終了行:
#contents
*Node.jsのご利用方法 [#b30100f6]
nodeコマンドで作成したスクリプトを実行して下さい。~
例)% node app.js
**Hello, world!と出力するHTTPサーバスクリプトの例 [#f2ff4...
+ポート番号3000で動作します。次の内容をテキストエディタで...
httpd.jsというファイル名で保存して下さい。
(ポート番号はwell-knownポート内で自由に変更して下さい)~
var http = require('http');
var port = 3000;
var server = http.createServer(function(req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello, world!\n');
});
server.listen(port);
console.log('Server running *:' + port);
+nodeコマンドでhttpd.jsを実行して下さい。
% node httpd.js
Server running *:3000
+ウェブブラウザから http://お客様のドメイン:3000 に接続し...
Hello, world!という文字列が表示されていれば正常に実行され...
*npmコマンド [#vce0764b]
socket.ioなどのパッケージをインストールできます。~
**初期設定 [#i40a7c8d]
+スクリプト等を設置するディレクトリを用意してその中に移動...
% mkdir nodejs
% cd nodejs
+npm initを実行して名前等を自由に入力して下さい。
% npm init
This utility will walk you through creating a package.js...
It only covers the most common items, and tries to guess...
See `npm help json` for definitive documentation on thes...
and exactly what they do.
Use `npm install <pkg> --save` afterwards to install a p...
save it as a dependency in the package.json file.
Press ^C at any time to quit.
name: (node2)
version: (1.0.0)
description:
entry point: (index.js)
test command:
git repository:
keywords:
author:
license: (ISC)
About to write to /home/22/ex1200/node2/package.json:
{
"name": "node2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
Is this ok? (yes)
+package.jsonというファイルが作成されれば完了です。
**パッケージのインストール [#sde457ff]
npm installでインストールできます。
% npm install パッケージ名
*socket.ioのご利用方法 [#k9742fec]
インストールされておりませんのでnpmコマンドを使ってインス...
**インストール [#r79d6496]
npm installコマンドを使用してインストールすることが出来ま...
+package.jsonを作成したディレクトリにいない場合は、そこに...
% cd nodejs
+npmコマンドでsocket.ioをインストールして下さい。
% npm install socket.io
npm WARN package.json node2@1.0.0 No description
npm WARN package.json node2@1.0.0 No repository field.
npm WARN package.json node2@1.0.0 No README data
> ws@0.4.31 install /home/22/ex1200/node2/node_modules/s...
> (node-gyp rebuild 2> builderror.log) || (exit 0)
gmake: ディレクトリ `/home/22/ex1200/node2/node_modules/...
CXX(target) Release/obj.target/bufferutil/src/bufferut...
SOLINK_MODULE(target) Release/obj.target/bufferutil.node
COPY Release/bufferutil.node
CXX(target) Release/obj.target/validation/src/validati...
SOLINK_MODULE(target) Release/obj.target/validation.node
COPY Release/validation.node
gmake: ディレクトリ `/home/22/ex1200/node2/node_modules/...
> ws@0.4.31 install /home/22/ex1200/node2/node_modules/s...
> (node-gyp rebuild 2> builderror.log) || (exit 0)
gmake: ディレクトリ `/home/22/ex1200/node2/node_modules/...
CXX(target) Release/obj.target/bufferutil/src/bufferut...
SOLINK_MODULE(target) Release/obj.target/bufferutil.node
COPY Release/bufferutil.node
CXX(target) Release/obj.target/validation/src/validati...
SOLINK_MODULE(target) Release/obj.target/validation.node
COPY Release/validation.node
gmake: ディレクトリ `/home/22/ex1200/node2/node_modules/...
socket.io@1.1.0 node_modules/socket.io
├── debug@0.7.4
├── has-binary-data@0.1.3 (isarray@0.0.1)
├── socket.io-parser@2.2.1 (isarray@0.0.1, component-em...
├── socket.io-adapter@0.2.0 (socket.io-parser@2.1.2)
├── engine.io@1.4.0 (base64id@0.1.0, debug@1.0.3, engin...
└── socket.io-client@1.1.0 (to-array@0.1.3, indexof@0.0...
+カレントディレクトリにnode_modulesディレクトリが作成され...
**socket.ioを利用したチャットプログラムの例 [#tf0db073]
公式サイトのチュートリアル(http://socket.io/get-started/...
+package.jsonを作成したディレクトリにいない場合は、そこに...
% cd nodejs
+npmコマンドでexpressをインストールして下さい。
※ --saveオプションをつけて下さい。
% npm install --save express
npm WARN package.json node2@1.0.0 No description
npm WARN package.json node2@1.0.0 No repository field.
npm WARN package.json node2@1.0.0 No README data
express@4.9.7 node_modules/express
├── utils-merge@1.0.0
├── merge-descriptors@0.0.2
├── fresh@0.2.4
├── cookie@0.1.2
├── escape-html@1.0.1
├── range-parser@1.0.2
├── cookie-signature@1.0.5
├── finalhandler@0.2.0
├── vary@1.0.0
├── media-typer@0.3.0
├── methods@1.1.0
├── parseurl@1.3.0
├── serve-static@1.6.4
├── path-to-regexp@0.1.3
├── depd@0.4.5
├── on-finished@2.1.0 (ee-first@1.0.5)
├── qs@2.2.4
├── debug@2.0.0 (ms@0.6.2)
├── proxy-addr@1.0.3 (forwarded@0.1.0, ipaddr.js@0.1.3)
├── etag@1.4.0 (crc@3.0.0)
├── send@0.9.3 (destroy@1.0.3, ms@0.6.2, mime@1.2.11)
├── accepts@1.1.2 (negotiator@0.4.9, mime-types@2.0.2)
└── type-is@1.5.2 (mime-types@2.0.2)
+次の内容をテキストエディタで作成して、index.htmlというフ...
<!doctype html>
<html>
<head>
<title>Socket.IO chat</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font: 13px Helvetica, Arial; }
form { background: #000; padding: 3px; position: f...
form input { border: 0; padding: 10px; width: 90%;...
form button { width: 9%; background: rgb(130, 224,...
#messages { list-style-type: none; margin: 0; padd...
#messages li { padding: 5px 10px; }
#messages li:nth-child(odd) { background: #eee; }
</style>
</head>
<body>
<ul id="messages"></ul>
<form action="">
<input id="m" autocomplete="off" /><button>Send</b...
</form>
<script src="/socket.io/socket.io.js"></script>
<script src="http://code.jquery.com/jquery-1.11.1.js...
<script>
var socket = io();
$('form').submit(function(){
socket.emit('chat message', $('#m').val());
$('#m').val('');
return false;
});
socket.on('chat message', function(msg){
$('#messages').append($('<li>').text(msg));
});
</script>
</body>
</html>
+次の内容をテキストエディタで作成して、index.jsというファ...
var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io')(http);
app.get('/', function(req, res){
res.sendfile('index.html');
});
io.on('connection', function(socket){
socket.on('chat message', function(msg){
io.emit('chat message', msg);
});
});
http.listen(3000, function(){
console.log('listening on *:3000');
});
+nodeコマンドでindex.jsを実行して下さい。
% node index.js
listening on *:3000
+ウェブブラウザから http://お客様のドメイン:3000 に接続し...
チャット画面が表示されていれば正常に実行されています。~
ブラウザを2個起動しそれぞれの画面からアクセスして、同時に...
ページ名: