Socket
Socket
Sign inDemoInstall

hotel

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hotel

Easily start, stop and access your servers from the browser


Version published
Weekly downloads
117
decreased by-15.22%
Maintainers
1
Weekly downloads
 
Created
Source

hotel

Start, stop and access your local servers from the browser <3

Install

npm install -g hotel

Add your servers commands (need to be done only once, -e option can be omitted if you're not using a version manager like nvm)

~/express$ hotel add nodemon -e PATH
~/static$ hotel add 'serve -p $PORT' -e PATH

Your servers can now be accessed, started and stopped from localhost:2000.

As a shortcut, you can also directly go to localhost:2000/<name> to start and access a server.

Works on OS X, Linux and Windows.

Usage

To add a server

hotel add <cmd> cmd [opts]

# Examples:
hotel add nodemon -o out.log # Set output file
hotel add nodemon -n name    # Set custom name
hotel add nodemon -e PATH    # Save current environment variable
                             # (use it with version managers)

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           # List servers
hotel rm [name]    # Remove server
hotel start        # Start daemon
hotel stop         # Stop daemon
hotel autostart    # Create autostart script
hotel rm-autostart # Remove autostart script

Port variable

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'  # OS X, Linux
hotel add "cmd -p %PORT%" # Windows

Hotel files

~/.hotel contains daemon log, servers and daemon configurations.

~/.hotel/conf.json
~/.hotel/daemon.log
~/.hotel/servers/<app-name>.json

License

MIT - Typicode

Keywords

FAQs

Package last updated on 15 Jun 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc