Skip to content

capturely/capturely-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

capturely.app

Usage

import Capturely from "./capturely";

let capturely = Capturely
    .html('<strong>I am strong</strong')
    .pdf()
    .capture();

console.log(capturely);

/**
 * {
 *    url: 'https://s3-url',
 *    size: 1234 //bytes
 * }
 */

// or steam directly -- return binary blob
return Capturely
	.html('<strong>I am strong</strong')
	.pdf()
	.stream();

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published