Node.js - Child Processes
Identify the error in this IPC code snippet:
const { fork } = require('child_process');
const child = fork('child.js');
child.send('Start');
child.on('message', msg => console.log(msg));
// child.js
process.send('Ready');
process.on('message', msg => console.log('Child got:', msg));