Socket
Socket
Sign inDemoInstall

webshotgun

Package Overview
Dependencies
4
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    webshotgun

Take high fidelity screenshots of websites.


Version published
Weekly downloads
6
Maintainers
1
Install size
3.91 MB
Created
Weekly downloads
 

Readme

Source

webshotgun

npm version

Webshotgun allows you to rapidly take high fidelity screenshots of websites.

Webshotgun uses SlimerJS, scripting for Firefox. Because SlimerJS always uses a very recent version of firefox, modern CSS support and rendering is much more reliable than tools based on PhantomJS.

Quickstart

Be sure you've installed Node and Firefox. You can get started quickly with the CLI:

$ npm install -g webshotgun
$ webshotgun --dest 'shots' google.com reddit.com nodejs.org

For more information on the CLI, use the --help flag:

$ webshotgun --help

Usage: webshotgun [options] <urls ...>

Options:

  -h, --help         output usage information
  -V, --version      output the version number
  -f, --file <file>  Read urls from a JSON – ["URL", "URL", ... ] – or CSV file. (URLs separated by whitespace or commas.)
  -d, --dest <path>  Set the directory in which to save screenshots. [default: './webshotgun']
  -w, --width        Set the viewport width (in pixels) at which to take screenshots. [default: '1500']
  -t, --tree         Organize screenshots into a folder tree matching the URL structure.
  -q, --quiet        Silence standard output.

Examples:

  $ webshotgun google.com reddit.com nodejs.org
  $ webshotgun --file urls.json --tree
  $ webshotgun --file urls.csv
  $ webshotgun --file urls.txt --width 500 --dest mobile-shots

API

$ npm install webshotgun
var webshotgun = require('webshotgun');

webshotgun.shoot({
    dest: 'destination folder',
    urls: ['http://google.com', 'http://reddit.com', 'http://nodejs.org'],
    quiet: true,
    tree: true,
    width: 2000
}, function() {
  console.log('Capture complete.')
});

Development

Run npm link to link the CLI during development.

Keywords

FAQs

Last updated on 11 May 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc