See discussion on Hacker News. Built with D3 and TopoJSON.
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
#!/usr/bin/env node | |
var cordova_util = require('cordova/src/util'); | |
var projectRoot = cordova_util.isCordova(process.cwd()); | |
var projectXml = cordova_util.projectConfig(projectRoot); | |
var projectConfig = new cordova_util.config_parser(projectXml); | |
projectConfig.name(); | |
var fs = require ('fs'); |
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
var common = require('../common'); | |
var MultipartParserStub = GENTLY.stub('./multipart_parser', 'MultipartParser'), | |
QuerystringParserStub = GENTLY.stub('./querystring_parser', 'QuerystringParser'), | |
JSONParserStub = GENTLY.stub('./json_parser', 'JSONParser'), | |
EventEmitterStub = GENTLY.stub('events', 'EventEmitter'), | |
FileStub = GENTLY.stub('./file'); | |
var formidable = require(common.lib + '/index'), | |
IncomingForm = formidable.IncomingForm, | |
events = require('events'), |
NewerOlder