Last active
February 14, 2023 12:57
-
-
Save dcortesnet/b634b4f38fba5db4b3e3b798b52fa5cb to your computer and use it in GitHub Desktop.
Nodejs creación de un subproceso básico
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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