Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vipul-zambare006/34bc32f8fa7e0d0c2b9929762baa585d to your computer and use it in GitHub Desktop.
Save vipul-zambare006/34bc32f8fa7e0d0c2b9929762baa585d to your computer and use it in GitHub Desktop.
NODE SCRIPT TO OPEN TABS IN DEFAULT BROWSER
const opn = require("open");
(async () => {
await opn("https://www.linkedin.com/feed/");
await opn("some url");
await opn("some url");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment