Skip to content

Instantly share code, notes, and snippets.

@rajatbarman
Created October 11, 2019 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rajatbarman/43510e987040c763c3c22d45c13aa0c6 to your computer and use it in GitHub Desktop.
Save rajatbarman/43510e987040c763c3c22d45c13aa0c6 to your computer and use it in GitHub Desktop.
const spawn = require('child_process').spawn;
for (let i=0; i <=10; i++) {
spawn('node', ['--max-old-space-size=2048', './test.js', `test${i}`, 5], {
stdio: 'inherit'
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment