An open API service indexing awesome lists of open source software.

https://github.com/samccone/shootit


https://github.com/samccone/shootit

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

shoot-it
=======
## A light wrapper around phantomjs

#### Dependencies
* ensure phantomjs is in your path

#### install
`npm install shootit`

#### How To Use

```js
require('shootit')('http://google.com', function(e, d) {
//e == error
//d.fileBuffer == file buffer
//d.path == file path
});
```