You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm aware that React is required for the Node Editor, but I just want to programmatically create a node graph, and execute it in NodeJS. According to https://flume.dev it should be possible to use Flume without React - is there a step I'm missing?
Can you please advise?
Minium reproducible example
minimum.ts
import { FlumeConfig } from "flume";
const config = new FlumeConfig();
Executing via npx tsc minimum.ts && node minimum.js
The text was updated successfully, but these errors were encountered:
I'm working on a piece of software NodeJS using TypeScript. As soon as I import Flume, and instantiate the
FlumeConfig
it throws an errornode_modules/flume/dist/types.d.ts:289:58 - error TS2503: Cannot find namespace 'React'.
I'm aware that React is required for the Node Editor, but I just want to programmatically create a node graph, and execute it in NodeJS. According to https://flume.dev it should be possible to use Flume without React - is there a step I'm missing?
Can you please advise?
Minium reproducible example
minimum.ts
Executing via
npx tsc minimum.ts && node minimum.js
The text was updated successfully, but these errors were encountered: