Skip to content

Instantly share code, notes, and snippets.

@YceeTheTECHie
Last active January 1, 2021 18:31
Show Gist options
  • Select an option

  • Save YceeTheTECHie/672d66e3fd10f2edab86889fa92f3081 to your computer and use it in GitHub Desktop.

Select an option

Save YceeTheTECHie/672d66e3fd10f2edab86889fa92f3081 to your computer and use it in GitHub Desktop.
How To Automate Your Tasks With Three Lines Of Javascript Code.
const open = require("open");
const urls = ['https://github.com', 'https://facebook.com', 'https://upwork.com', 'https://gmail.com', 'https://medium.com'];
for (let i = 0; i < urls.length; i++){open(urls[i])}
console.log("automation launched");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment