This file contains 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
// http://stackoverflow.com/questions/12871740/how-to-detach-spawned-child-process-in-a-node-js-script | |
// https://nodejs.org/api/child_process.html#child_process_options_detached | |
// var fs = require('fs'); | |
// var out = fs.openSync('./out.log', 'a'); | |
// var err = fs.openSync('./out.log', 'a'); | |
var cp = require('child_process'); | |
// var child = cp.spawn('node', ['zombie.js'], { detached: true, stdio: [ 'ignore', out, err ] }); | |
var child = cp.spawn('node', ['zombie.js'], { detached: true, stdio: [ 'ignore' /* stdin */, 'ignore' /* stdout */, 'ignore' /* stderr */ ] }); |
This file contains 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
"use strict"; | |
var growl = require('growl'); | |
var request = require('request'); | |
var argv = require('minimist')(process.argv.slice(2)); | |
var JSONStream = require('JSONStream'); | |
var assert = require('assert'); | |
var through = require('through'); | |
var ms = require('ms'); | |
var chalk = require('chalk'); |
This file contains 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
var fs = require('fs'); | |
var http = require('http'); | |
var httpProxy = require('http-proxy'); | |
// | |
// Create a proxy server with custom application logic | |
// | |
var proxy = httpProxy.createProxyServer({}); | |
// |
This file contains 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
var request = require('request'); | |
var cheerio = require('cheerio'); | |
var select = require('html-select'); | |
var tokenize = require('html-tokenize'); | |
var counter = 0; | |
function crawl(page, stopAt, cb) { | |
counter++; |
This file contains 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
var request = require('request'); | |
var cheerio = require('cheerio'); | |
request('https://news.ycombinator.com/', function(err, res, body) { | |
if (err) { | |
throw err; | |
} | |
var $ = cheerio.load(body); | |
var results = []; |
This file contains 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
// simplest control flow function ever for async parallel functions | |
var doParallel = function(counter, cb) { | |
return function() { | |
// counter reached 0 | |
if (!--counter) { | |
cb(); | |
} | |
}; | |
}; |
This file contains 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
"use strict"; | |
var fs = require('fs'); | |
var zlib = require('zlib'); | |
var crypto = require('crypto'); | |
var gzip = zlib.createGunzip(); | |
var rs = fs.createReadStream('llorem.txt.gz.encrypted'); | |
var password = new Buffer('password here'); |
This file contains 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
"use strict"; | |
// CSV data downloaded from the following url: | |
// http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_month.csv | |
var fs = require('fs'); | |
var csv = require('csv-parser'); | |
var FilterStream = require('./filter-stream'); | |
var Table = require('cli-table'); | |
var bubbleError = require('bubble-stream-error').bubble; |
This file contains 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
function Student(name, age, university) { | |
if (!(this instanceof Student)) { | |
return new Student(name, age, university); | |
} | |
// #1 - duplicate code from Person constructor | |
//Person.call(this, name, age); | |
this.university = university; | |
} | |
var junior2 = Student('John', 18, 'MIT'); |