Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

polotno-node

Package Overview
Dependencies
Maintainers
1
Versions
121
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

polotno-node

Polotno workflow from NodeJS

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
946
increased by3.05%
Maintainers
1
Weekly downloads
 
Created
Source

Polotno-node

NodeJS package to work with Polotno Framework.

Usage

npm install polotno-node
const fs = require('fs');
const { createInstance } = require('./index');

async function run() {
  // create working instance
  const instance = await createInstance({ key: 'nFA5H9elEytDyPyvKL7T' });

  // load sample json
  const json = JSON.parse(fs.readFileSync('polotno.json'));

  // execute loading of JSON and export to image
  // we can't directly use "json" variable inside the run function
  // we MUST pass it as the second argument
  const url = await instance.run(async (json) => {
    store.loadJSON(json);
    await store.waitLoading();
    return store.toDataURL();
  }, json);

  // prepare base64 string to save
  var base64Data = url.replace(/^data:image\/png;base64,/, '');

  // save it to local file
  require('fs').writeFileSync('out.png', base64Data, 'base64');

  // close instance
  instance.close();
}

run();

FAQs

Package last updated on 26 Feb 2021

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc