Created
June 28, 2020 11:25
-
-
Save evanxg852000/5d0376fe4010daa9b543dceb561d3a92 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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