Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

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

  • 0.4.6
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
148
increased by27.59%
Maintainers
1
Weekly downloads
 
Created
Source

hotel Mac/Linux Build Status Windows Build status

No need to worry about ports, remember commands, manage terminal tabs, ... access and start your servers from the browser. You can even use local .dev domains and it works everywhere (OS X, Linux, Windows) :+1:

Features

  • Shortcut access (http://localhost:2000/project)
  • Local domain support (http://project.dev *)
  • Servers are only started when you access them
  • Random or fixed ports
  • Works with any server (Node, Ruby, PHP, ...)
  • Cross-platform (OS X, Linux and Windows)
  • Plays nice with other servers (Apache, Nginx, ...)
  • No port 80 or admin/root privileges needed

(*) Local .dev domains are optional. To use them, configure your network or browser to use hotel's proxy auto-config file (proxy.pac). See instructions here.

Install

npm install -g hotel && hotel start

Quick start

Add your servers commands.

~/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

Other servers examples:

hotel add 'jekyll --port $PORT'
hotel add 'rails server --port $PORT'
hotel add 'python -m SimpleHTTPServer $PORT'
hotel add 'php -S 127.0.0.1:$PORT'
# ...

On Windows use "%PORT%" instead of '$PORT'

Usage

To add a server

hotel add <cmd> [opts]

# Examples:
hotel add 'nodemon app.js' -o out.log # Set output file (default: none)
hotel add 'nodemon app.js' -n name    # Set custom name (default: current dir name)
hotel add 'nodemon app.js' -p 3000    # Set a fixed port (default: random port)
hotel add 'nodemon app.js' -e PATH    # Store PATH environment variable in server config

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

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

Dev domain support

See instructions here.

Configurations and logs

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

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

Third-party tools

License

MIT - Typicode

Keywords

FAQs

Package last updated on 04 Feb 2016

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