How to run meteor server on a different ip address?

前端 未结 9 1847
悲哀的现实
悲哀的现实 2020-12-02 23:51

How can i start meteor server on a different IP address? Currently in the examples am only able to run on a localhost:3000 address.

9条回答
  •  忘掉有多难
    2020-12-03 00:33

    export BIND_IP no longer works, bind IP is defined with --port (or -p or --app-port) option(s):

    $ meteor run --port 127.0.0.1:3000
    

    Reference: https://github.com/meteor/meteor/commit/9b8bd31a7b6c857e5d8fc0393982e6e6b2973eb0

提交回复
热议问题