hotel
Manage your dev servers from the browser without having to think about ports or commands <3
Quick start
Add your servers commands (need to be done only once)
~/projects/one$ hotel add nodemon
~/projects/two$ hotel add 'serve -p $PORT'
Now, you can access, start and stop your servers from localhost:2000.
As a shortcut, you can also directly go to:
http://localhost:2000/one
http://localhost:2000/two
Works on OS X, Linux and Windows with any server.
Install
npm install -g hotel && hotel start
GIF
Usage
To add a server
hotel add <cmd> cmd [opts]
hotel add nodemon -o out.log
hotel add nodemon -n name
hotel add nodemon -e ENV
To list, start and stop servers go to
http://localhost:2000
To start and access directly your server go to
http://localhost:2000/<app-name>
Other commands
hotel ls
hotel rm [name]
hotel start
hotel stop
Port
For hotel
to work, your servers need to listen on the PORT environment variable.
Here are some examples showing how you can do it from your code or the command-line:
var port = process.env.PORT || 3000
server.listen(port)
hotel add 'cmd -p $PORT'
hotel add "cmd -p %PORT%"
Files
~/.hotel
contains daemon log, servers and daemon configurations.
~/.hotel/conf.json
~/.hotel/daemon.log
~/.hotel/servers/<app-name>.json
License
MIT - Typicode