Capture a screenshot of a webpage using GoogleChromes/puppeteer
     
bash
$ yarn add screencapture-url
`
or
`bash
$ npm install screencapture-url --save
`
Usage
Full API documentation see API.md
`
// fast example
(async () =>
const result = await new Screenshot()
.of('http://example.com')
.to('.')
.withName('my_screenshot')
.asPng()
.take()
console.log(result) // Output: { path: './my_screenshot.png', screenshot: }
)()
``