Skip to content

Instantly share code, notes, and snippets.

@pmhegdek
Created March 3, 2019 11:48
Show Gist options
  • Save pmhegdek/6aab512ce2ae8d8745f781fd047a4a83 to your computer and use it in GitHub Desktop.
Save pmhegdek/6aab512ce2ae8d8745f781fd047a4a83 to your computer and use it in GitHub Desktop.
src/server.ts
import app from './App'
app.listen(3000, (err) => {
if (err) return console.log(err)
return console.log('Server is running in port: ', 3000);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment