Socket
Socket
Sign inDemoInstall

@hpcc-js/wasm

Package Overview
Dependencies
16
Maintainers
1
Versions
106
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @hpcc-js/wasm

hpcc-js - WASM Libraries


Version published
Maintainers
1
Created

Changelog

Source

2.15.1 (2023-12-08)

Bug Fixes

  • Improve "require" and "commonjs" support (15e1ace)

Readme

Source

@hpcc-js/wasm - Version 2

Tests Coverage Status

@hpcc-js/wasm is now an ESM by default package - this is a good thing, but does require some breaking changes.

This repository contains a collection of useful c++ libraries compiled to WASM for (re)use in Node JS, Web Browsers and JavaScript Libraries:

Built with:

Homepage and Documents

Quick Migration Example

v1.x.x

import { graphviz, wasmFolder } from "@hpcc-js/wasm";

wasmFolder("https://cdn.jsdelivr.net/npm/@hpcc-js/wasm/dist");

const dot = "digraph G { Hello -> World }";

graphviz.dot(dot).then(svg => {
    const div = document.getElementById("placeholder");
    div.innerHTML = svg;    
});

graphvizVersion.then(version => console.log(version));

v2.x.x - ESM (Modern ECMAScript Modules)

import { Graphviz } from "@hpcc-js/wasm/graphviz";

const graphviz = await Graphviz.load();

const dot = "digraph G { Hello -> World }";
const svg = graphviz.dot(dot);
console.log(graphviz.version());

v2.x.x - CommonJS

const { Graphviz } = require("@hpcc-js/wasm/graphviz");

Graphviz.load().then(graphviz => {
    const dot = "digraph G { Hello -> World }";
    const svg = graphviz.dot(dot);
    console.log(graphviz.version());
});

Notes:

  • Import must specify which wasm library you are using
  • wasmFolder is no longer needed
  • All wasm libraries have the same asynchronous load pattern
    • const instance = await Wasm.load();

Keywords

FAQs

Last updated on 08 Dec 2023

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