Skip to content

Instantly share code, notes, and snippets.

@dcortesnet
Last active February 14, 2023 12:57
Show Gist options
  • Select an option

  • Save dcortesnet/b634b4f38fba5db4b3e3b798b52fa5cb to your computer and use it in GitHub Desktop.

Select an option

Save dcortesnet/b634b4f38fba5db4b3e3b798b52fa5cb to your computer and use it in GitHub Desktop.
Nodejs creación de un subproceso básico
const { exec } = require('child_process');
url = "https://www.youtube.com/";
cmdCommand = `start chrome /new-tab ${url}`;
exec(cmdCommand);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment