Skip to content

Instantly share code, notes, and snippets.

@evanxg852000
Created June 28, 2020 11:25
Show Gist options
  • Save evanxg852000/5d0376fe4010daa9b543dceb561d3a92 to your computer and use it in GitHub Desktop.
Save evanxg852000/5d0376fe4010daa9b543dceb561d3a92 to your computer and use it in GitHub Desktop.
//main
const http = require('http');
const functions = require('./functions')
//create a server object
http.createServer(functions.API)
.listen(8000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment