Cooper
Cooper2y ago

Beginner Question: Javascript imports from node

Is it possible to run this type of code within a script in Windmill to have interactivity?
import * as readline from "node:readline/promises";
import { stdin as input, stdout as output } from "node:process";
const rl = readline.createInterface({ input, output });
import * as readline from "node:readline/promises";
import { stdin as input, stdout as output } from "node:process";
const rl = readline.createInterface({ input, output });
1 Reply
rubenf
rubenf2y ago
At the moment not. You would have interactivity by creating an app

Did you find this page helpful?