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
126
decreased by-33.33%
Maintainers
1
Weekly downloads
 
Created
Source

hotel

Easily start, stop and access your servers from the browser

   _____
   |___|
 __|^_^|__  
 |  .    |
 |  .    |
_|_______|_ Welcome! Please enjoy your stay.

Install

npm install -g hotel

Add your servers (need to be done only once)

~/node-app$ hotel add nodemon
~/html-app$ hotel add 'serve -p $PORT'

if you're using nvm or similar, add -e PATH (i.e. hotel add nodemon -e PATH).

Start hotel

~$ hotel start
~$ hotel autostart # Create an autostart script (recommended)

Relax

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

No need to open a terminal (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    # Add 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)
# OS X, Linux
hotel add 'cmd -p $PORT'

# Windows
hotel add "cmd -p %PORT"

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 27 May 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