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

nodi-modular

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodi-modular

Modular is a module project designed to import node graphs created in Nodi in JSON format, enabling the extraction of geometric data generated based on the node graph structure.

  • 0.0.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Nodi modular

npm version

Modular is a module project designed to import node graphs created in Nodi in JSON format, enabling the extraction of geometric data generated based on the node graph structure.

It is provided in WebAssembly format, making it usable not only in web frontend applications but also in various applications that support WebAssembly.

Installation

npm install nodi-modular

or yarn

yarn add nodi-modular

Example

We provide examples of how to use the Modular module in the examples directory with following environments:

  • deno
  • react

Usage


import init, { Modular } from "nodi-modular";

// Initialize the WebAssembly module
await init();

// Create a new instance of the Modular
const modular = Modular.new();

// Load a node graph in JSON format as a string
modular.loadGraph(JSON.stringify({
  nodes: { ... },
}));

// Evaluate the node graph to get the result
const result = modular.evaluate();

// Geometry identifiers are the keys of the geometries in the result
const { geometryIdentifiers } = result;

geometryIdentifiers.forEach((identifier) => {
  // Get the geometry variant by identifier
  // variants are curve, surface, mesh, and etc.
  const geometry = modular.findGeometryById(identifier);

  // Get the geometry interop by identifier
  // geometry interop has the data that can be rendered as a polygonalized data (polyline or triangle mesh)
  const interop = modular.findGeometryInteropById(identifier);
});

// Get the nodes of the node graph
const nodes = modular.getNodes();

// Find the node by the variant and label
const numberOfGrid = nodes.find((n) => n.variant === "Number" && n.label === 'number of grid');

// Each nodes have the properties that can be changed
// What properties can be changed depends on the node variant, so you need to check the node variant's properties (numberGrid["properties"])
modular.changeNodeProperty(numberOfGrid.id, {
  name: "value",
  value: {
    type: "Number",
    content: 30,
  }
});

// re-evaluate the node graph to get the result after the property change
const resultAfterPropertyChange = await modular.evaluate();

Keywords

FAQs

Package last updated on 18 Nov 2024

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