Skip to content

Instantly share code, notes, and snippets.

@pbindustries
Created June 24, 2018 17:25
Show Gist options
  • Save pbindustries/9c26485dc4a6955f1324e222ca424f88 to your computer and use it in GitHub Desktop.
Save pbindustries/9c26485dc4a6955f1324e222ca424f88 to your computer and use it in GitHub Desktop.
Check that you have node and needed dependencies
/* Check for Node.js */
var IS_NODE = false;
if (typeof exports !== 'undefined') {
if (typeof module !== 'undefined' && module.exports) {
IS_NODE = true;
// Get dependencies
request = require("request");
jQuery = require("cheerio");
$ = require("cheerio");
_ = require("underscore");
// Add other dependencies here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment