Socket
Socket
Sign inDemoInstall

grabzit

Package Overview
Dependencies
0
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    grabzit

Automatically create screenshots of websites for free, with GrabzIt. Screenshots can be output in a variety of formats including: JPEG, PNG, TIFF, BMP, PDF, CSV and XLSX. Additionally convert online videos into animated GIF's.


Version published
Maintainers
1
Created

Readme

Source

GrabzIt 2.2

This library allows you to programmatically convert web pages into images, PDF's, CSV's and spreadsheets. Additionally GrabzIt allows you to convert online videos into animated GIF's. For more help please read our documentation.

Its usually best to place these files in their own directory.

Before the package can be used you must register to get your application key and secret. Once you have this you can take a screenshot like so:

var grabzit = require("grabzit");
var client = new grabzit("YOUR APPLICATION KEY", "YOUR APPLICATION SECRET");
client.set_image_options("http://www.google.com");
client.save(http://www.mysite.com/handler");

The handler then gets passed the following query string parameters:

  • id
  • customid
  • message
  • filename
  • format

These query string parameters can be used to edit and save the screenshot, so in the handler something like this could be used:

var grabzit = require("grabzit");
var client = new grabzit("YOUR APPLICATION KEY", "YOUR APPLICATION SECRET");
client.get_result(id, function(err, result){
    file.writeFile('test.jpg', result);
});

Keywords

FAQs

Last updated on 12 Sep 2014

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