https://github.com/samccone/shootit
https://github.com/samccone/shootit
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/samccone/shootit
- Owner: samccone
- Created: 2014-02-04T23:51:43.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-02-05T02:05:42.000Z (over 12 years ago)
- Last Synced: 2025-09-17T11:21:12.410Z (10 months ago)
- Language: JavaScript
- Size: 133 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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
});
```