Unity3D

Unity3d + Node.js 연동 테스트

일등하이 2014. 3. 17. 14:33
반응형

http://whackcode.wordpress.com/2013/12/18/part-2-getting-started-with-node-js-as-a-unity-3d-game-server/

 

http://stackoverflow.com/questions/17568066/connecting-unity3d-with-node-js

 

http://mobicon.tistory.com/224

 

http://www.nodebeginner.org/index-kr.html

 

socket.io사용

http://forum.falinux.com/zbxe/index.php?document_srl=573508&mid=lecture_tip

 

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('Server running at http://127.0.0.1:1337/');

반응형