DaddyImPregnant
DaddyImPregnant2mo ago

"use node" on Windows causes an error

Hi! On Windows, when running
bun x convex dev
bun x convex dev
I get this error Test action:
import { action } from "./_generated/server";
import { v } from "convex/values";

export const testSimpleAction = action({
args: {
jarPath: v.optional(v.string()),
onOutput: v.optional(v.string())
},
handler: async (ctx, args) => {
return { success: true, message: "Hello from Node.js action!" };
},
});
import { action } from "./_generated/server";
import { v } from "convex/values";

export const testSimpleAction = action({
args: {
jarPath: v.optional(v.string()),
onOutput: v.optional(v.string())
},
handler: async (ctx, args) => {
return { success: true, message: "Hello from Node.js action!" };
},
});
Error: 7/21/2025, 9:10:00 PM [CONVEX A(simpleAction:testSimpleAction)] Only URLs with a scheme in: file, data, and node are supported by the default ESM loader. On Windows, absolute paths must be valid file:// URLs. Received protocol 'c:'
1 Reply
Convex Bot
Convex Bot2mo ago
Thanks for posting in <#1088161997662724167>. Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets. - Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.) - Use search.convex.dev to search Docs, Stack, and Discord all at once. - Additionally, you can post your questions in the Convex Community's <#1228095053885476985> channel to receive a response from AI. - Avoid tagging staff unless specifically instructed. Thank you!

Did you find this page helpful?