I put a zipfile under my pillow and the shapefile-fairy brought me shapefiles
npm install shapefile-fairyExtracts files composing a shapefile from a .zip archive into a temporary directory and returns the path to the .shp file.

``sh`
$ npm install -g shapefile-fairy
In shell scripts
`sh`exit 1 on failure, exit 0 on success and prints output path to stdout
$ shapefile-fairy /path/to/zipped/shapefile.zip
In JavaScript
`javascript
var shpFairy = require('shapefile-fairy');
shpFairy('/path/to/zipped/shapefile.zip', function(err, output) {
if (err) return console.error(err);
doSomethingWith(output);
});
``