Hacker News new | ask | show | jobs
by themgt 5077 days ago
The vulcan node build server seems to have a handful of dependencies that aren't public (unless I'm missing something? - e.g. logger, spawner, cloudant): https://github.com/heroku/vulcan/blob/master/server/web.coff...
1 comments

The logger, spawner and cloudant coffeescript files are in the lib folder: https://github.com/heroku/vulcan/tree/master/server/lib

When the app is created it sets NODE_PATH=lib so the app can find those files without specifying the full path: https://github.com/heroku/vulcan/blob/master/lib/vulcan/cli....

Ahh fantastic, thanks