Closed
Description
What is the problem this feature would solve?
package.json
{ "scripts": { "mycoolscript":"bun ./child.js"}}
./child.js
process.send('hello')
parent.js
Bun.spawn(['bun', 'mycoolscript'], {
ipc(message) {
console.info(message) // hello
}
})
What is the feature you are proposing to solve the problem?
Make bun script runner as IPC proxy
What alternatives have you considered?
No response