“socket.io.js”文件位于何处?

时间:2015-09-14 18:25:35

标签: javascript node.js sockets websocket socket.io

我正在尝试设置一个WebSocket来运行一个简单的聊天应用程序。

我有一个用户使用在服务器A上运行的PHP应用程序。另一方面,我有服务器B使用node.js和Socket.io运行WebSocket。

我按照Socket.io教程撰写了一个小型聊天应用程序。但似乎我需要在我的客户端脚本中包含socket.io.js文件以启动用户和Websocket之间的连接。但是,我似乎无法弄清楚从哪里获取socket.io.js文件。

我在哪里可以找到socket.io.js

在这种情况下,我不确定我的代码是否重要,但如果需要,这里也是如此。

这是我的socket.js文件“Websocket”服务器

var env = require('./config');

var app = require('express')();
var server = require('http').Server(app);
var io = require('socket.io')(server);

server.listen(env.socket.port, env.socket.host, function () {
  var host = server.address().address;
  var port = server.address().port;

  console.log('Example app listening at http://%s:%s', host, port);
});

app.get('/', function (req, res) {
    res.send('Landed!');
});

io.on('connection', function (socket) {
  socket.emit('news', { hello: 'world' });

  socket.on('my other event', function (data) {
    console.log(data);
  });

});

这是我的客户代码

<!doctype html>
<html lang="en-US">
  <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: fixed; bottom: 0; width: 100%; }
      form input { border: 0; padding: 10px; width: 90%; margin-right: .5%; }
      form button { width: 9%; background: rgb(130, 224, 255); border: none; padding: 10px; }
      #messages { list-style-type: none; margin: 0; padding: 0; }
      #messages li { padding: 5px 10px; }
      #messages li:nth-child(odd) { background: #eee; }
    </style>

    <script src="/socket.io.js"></script>
    <script type="text/javascript" src="/js/jquery-2.1.0.min.js"></script>
    <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>

  </head>
  <body>
    <ul id="messages"></ul>
    <form action="">
      <input id="m" autocomplete="off" /><button>Send</button>
    </form>
  </body>
</html>

2 个答案:

答案 0 :(得分:2)

您可以使用cdn服务器提供的this one。只需下载并使用它!如果您没有使用最新版本,则应访问this one并选择当前版本。

答案 1 :(得分:1)

您的HTML不正确。这是您需要的行:

<script src="/socket.io/socket.io.js"></script>

这令人困惑,因为没有明显的socket.io.js文件只是坐在磁盘上。它由快速Web应用程序中的socket.io自动提供,但路径/socket.io/socket.io.js完全是虚拟的,不会直接映射到文件系统上的目录或文件。

Here's the source code其中socket.io服务器从socket.io-client npm模块加载socket.io.js文件源代码,然后它将在URL /socket.io/socket.io.js时发送到浏览器请求。

如果您只想抓取文件并将其粘贴在PHP服务器中,它就会生存here on the official socket.io-client github repo