sss-node

0.0.2 • Public • Published

ScreenshotShark in Node

Screenshot Shark

This is the Node.js library for creating screenshot URLs using the ScreenshotShark service.

We like CoffeeScript:

 
sss = require('sss-node')('api-key''secret')
 
opts =
  url: 'http://www.google.com'
  op:  'f:200:200'
 
console.log sss(opts)

But, if you prefer vanilla JS:

 
var sss = require('sss-node')('api-key', 'secret');
 
var opts = {
  url: 'http://www.google.com',
  op:  'f:200:200'
};
 
console.log(sss(opts));

Check out Screenshot Shark for all your screenshotting needs.

Readme

Keywords

none

Package Sidebar

Install

npm i sss-node

Weekly Downloads

2

Version

0.0.2

License

BSD

Last publish

Collaborators

  • mikejholly