Start Meteor server and allow other computers to access it
In Rails or Django, you can allow other devices to access your server by specifying the server address as 0.0.0.0 instead of localhost: 3000. How can you do the same in Meteor?
+2
Maximus S
source
to share
1 answer
You can specify the interface and port using the command meteor --port host:port
In your case, it will be meteor --port 0.0.0.0:3000
.
Enter meteor --help
to see all tasks. The default job is running. meteor help run
will display all options.
+4
AndrewS
source
to share