Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 347 Bytes

server_path_value.md

File metadata and controls

16 lines (12 loc) · 347 Bytes

server.path([value])

  • value (string)
  • Returns Server|String

设置为Engine.io和静态文件提供服务的路径value。默认为/socket.io。如果没有提供参数,此方法将返回当前值。

const io= require('socket.io')();
io.path('/myownpath');

// 客户端
const socket=io({
    path:"/myownpath"
})