This project contains the custom [Rivet](https://github.com/Ironclad/rivet) plugin for Enter.
This project contains the custom Rivet plugin for Enter.
- Using the plugin
- In Rivet
- In Code
- Making your own plugin
- ⚠️ Important Notes ⚠️
- 1. Plugin Definition
- 2. Node Definitions
- 3. Bundling
- 4. NPM
- Local Development
To use this plugin in Rivet:
1. Open the plugins overlay at the top of the screen.
2. Go to "NPM Plugin" on the bottom of the list and click on "Add" button.
3. Enter "@julianolm/talisman-rivet-plugin" for the package name and set the desired version (latest is 0.0.1).
4. Click the "Add" button to install the plugin into your current project.
Load your plugin and Rivet into your application:
``ts`
import * as Rivet from "@ironclad/rivet-core";
import examplePlugin from "rivet-plugin-example";
Register your plugin with Rivet be using the globalRivetNodeRegistry or creating a new NodeRegistration and registering with that:
`ts`
Rivet.globalRivetNodeRegistry.registerPlugin(examplePlugin(Rivet));
- You must bundle your plugins, or include all code for your plugin in the ESM files. Plugins are loaded using import(pluginUrl) so must follow all rules for ESM modules. This means that you cannot use require or module.exports in your plugin code. If you need to use external libraries, you must bundle them.
- You also cannot import nor bundle @ironclad/rivet-core in your plugin. The rivet core library is passed into your default export function as an argument. Be careful to only use import type statements for the core library, otherwise your plugin will not bundle successfully.
This repository has examples for both bundling with ESBuild and only importing types from @ironclad/rivet-core.
Follow the example in src/index.ts to define your plugin. Your plugin must default-export a function that takes in the Rivet Core library as its only argument, and returns a valid RivetPlugin object.
Follow the example in src/nodes/ExamplePluginNode.ts to define your plugin's nodes. You should follow a simlar syntax of exporting functions that take in the Rivet Core library.
- Nodes must implement PluginNodeDefinition by calling pluginNodeDefinition(yourPluginImpl, "Node Name").PluginNodeImpl
- Node implementations must implement .T
- should be your plugin's type definition.
See bundle.ts for an example of how to bundle your plugin. You can use any bundler you like, but you must bundle your plugin into a single file. You can use the ESBuild bundler to bundle your plugin into a single file.
It is important that all external libraries are bundled, because browsers cannot load bare imports.
You must finally publish your plugin to NPM so that Rivet users can install it using the UI in Rivet, or using the SDK.
1. Run yarn dev to start the compiler and bundler in watch mode. This will automatically recombine and rebundle your changes into the dist` folder. This will also copy the bundled files into the plugin install directory.
2. After each change, you must restart Rivet to see the changes.