Created
March 7, 2018 14:07
-
-
Save philipisapain/a923235f16ea5a00fe482ec3f46e9369 to your computer and use it in GitHub Desktop.
Example of a Node entry point
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
const SomeDependency = require('some-dependency') | |
class TopLevelProcess { | |
constructor (someDependency) { ... } | |
start () { ... } | |
} | |
const process = new TopLevelProcess(new SomeDependency()) | |
process.start() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment