TypeError: shellExec is not a function
import shellExec from "shell-exec"; shellExec('echo Hi!').then(console.log).catch(console.log)
╰─ ❯❯ node test.js
(node:34163) [MODULE_TYPELESS_PACKAGE_JSON] Warning: Module type of file:///home/vishnu/room/aura/test.js is not specified and it doesn't parse as CommonJS.
Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
To eliminate this warning, add "type": "module" to /home/vishnu/room/aura/package.json.
(Use node --trace-warnings ... to show where the warning was created)
file:///home/vishnu/room/aura/test.js:2
shellExec('echo Hi!').then(console.log).catch(console.log)
^
TypeError: shellExec is not a function at file:///home/vishnu/room/aura/test.js:2:1 at ModuleJob.run (node:internal/modules/esm/module_job:273:25) at async onImport.tracePromise.proto (node:internal/modules/esm/loader:600:26) at async asyncRunEntryPointWithESMLoader (node:internal/modules/run_main:98:5)
Node.js v23.9.0
+1