Skip to content

Instantly share code, notes, and snippets.

@JustinDFuller
Created July 21, 2019 00:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JustinDFuller/ee05456fa2231310fc44c0a8dc10ac8c to your computer and use it in GitHub Desktop.
Save JustinDFuller/ee05456fa2231310fc44c0a8dc10ac8c to your computer and use it in GitHub Desktop.
HTTP Server
import express from 'express'
import { routes } from './routes'
const server = express()
/**
* Implement routes
*
* server.get('/user', routes.user.get)
*
*/
server.listen()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment