Created
December 17, 2019 19:51
-
-
Save leolanese/3d8eb7677c27e1c100f93b18b87dcbf1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// We no longer need the "use strict" directive since | |
// all ECMAScript modules implicitly use strict mode. | |
import * as config from "./config.json"; | |
app.listen(config.server.nodePort, () => { | |
console.log(`Listening on port ${config.server.nodePort} ...`); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment