Skip to content

Instantly share code, notes, and snippets.

@mynameislau
Last active February 26, 2017 16:50
Show Gist options
  • Save mynameislau/920e9743213bf5b23addef9455ac635b to your computer and use it in GitHub Desktop.
Save mynameislau/920e9743213bf5b23addef9455ac635b to your computer and use it in GitHub Desktop.
Get automatically a free port on Express
const listener = app.listen(0, () => {
console.log(`Listening to port ${listener.address().port}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment