私が書こうとしているアプリケーションでは、メイン ページ ( http://localhost:8675 ) は次の形式になっています。
<form action='/?joinnew' method='post'>
<button>Start</button>
</form>
server.js のコードは次のとおりです。
http.createServer(function(request, response) {
var root = url.parse(request.url).pathname.split('/')[1];
if (root == '') {
var query = url.parse(request.url).search:
if (query == '?joinnew') {
var newRoom = getAvaliableRoomId(); // '8dn1u', 'idjh1', '8jm84', etc.
// redirect the user's web browser to a new url
// ??? How to do. Need to redirect to 'http://whateverhostthiswillbe:8675/'+newRoom
...
}}}
ホストアドレスが変更される可能性があるため、ホストアドレスを知る必要がない場合にそれを行う方法があれば幸いです。
'http' オブジェクトは通常の require('http') であり、require('express') ではありません。