Skip to content

Instantly share code, notes, and snippets.

@philipisapain
Created March 7, 2018 14:07
Show Gist options
  • Save philipisapain/a923235f16ea5a00fe482ec3f46e9369 to your computer and use it in GitHub Desktop.
Save philipisapain/a923235f16ea5a00fe482ec3f46e9369 to your computer and use it in GitHub Desktop.
Example of a Node entry point
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