Socket
Socket
Sign inDemoInstall

sss-node

Package Overview
Dependencies
1
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    sss-node

Screenshot Shark url generator in node!


Version published
Weekly downloads
0
Maintainers
1
Install size
150 kB
Created
Weekly downloads
 

Readme

Source

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.

Keywords

FAQs

Last updated on 10 May 2013

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