how to return when child process is complete in node js

JavaScript
var child = require('child_process').exec('python celulas.py')
child.stdout.pipe(process.stdout)
child.on('exit', function() {
  process.exit()
})var execSync = require('exec-sync');

var user = execSync('python celulas.py');
Source

Also in JavaScript: