Hi, I'm Jeff Sinclair

Product Leader; liker of cool stuff; buyer of things that I cannot afford. Aiming to get some thoughts down onto paper as I explore various web technologies in my spare time. The thoughts and language on this blog are my own, and not representative of my current or past employers.

Hotel - An easier way to manage local .dev environments

I just recently stumbled across Hotel, a super simple way to manage local dev environments without having to resort to manipulating your /etc/hosts file and having lots of terminal windows open to spin up/down your various applications.

3 simple steps:

  1. Install hotel: npm install -g hotel
  2. Start hotel: hotel start
  3. Add your application: hotel add '<command to start your application> $PORT

Running command 3 from the root of your applications folder, and passing in the $PORT variable will allow your application to be started on a random port from a slick UI.

Try it out!