jssdk
![NPM package](https://img.shields.io/npm/v/screenshotone-api-sdk.svg?branch=main)
An official Screenshot API client for JavaScript and TypeScript.
It takes minutes to start taking screenshots. Just sign up to get access and secret keys, import the client, and you are ready to go.
The SDK client is synchronized with the latest screenshot API options.
Installation
npm install screenshotone-api-sdk --save
Usage
Generate a screenshot URL without executing the request. Or download the screenshot. It is up to you:
import * as fs from 'fs';
import * as screenshotone from 'screenshotone-api-sdk';
const client = new screenshotone.Client("<access key>", "<secret key>");
const options = screenshotone.TakeOptions
.url("https://example.com")
.delay(3)
.blockAds(true);
const url = client.generateTakeURL(options);
console.log(url);
const imageBlob = await client.take(options);
const buffer = Buffer.from(await imageBlob.arrayBuffer());
fs.writeFileSync("example.png", buffer)
License
screenshotone/jssdk
is released under the MIT license.