Skip to main content

Installation

Wally

Add Dynamo to your wally.toml dependencies:

Dynamo = "elentium/dynamo@1.0.0"

Install dependencies:

wally install

Require the generated package from the location mapped by your Rojo project:

local Packages = game:GetService("ReplicatedStorage").Packages
local Dynamo = require(Packages.Dynamo)

Pesde

pesde add elentium/dynamo

Require the package through the path generated by your Pesde setup:

local Dynamo = require(path.to.Dynamo)

npm

npm install @elentium/dynamo

Use your npm package import path as usual.

For roblox-ts, add @elentium to your project's typeRoots and map node_modules/@elentium in your Rojo project tree.

Source

You can also copy src/Dynamo.luau from this repository into your project and require it directly.