tree: 4faff821215046b9e0637741909a3b1298a05022 [path history] [tgz]
  1. lib/
  2. vendor/
  3. .jshintignore
  4. .jshintrc
  5. .npmignore
  6. LICENSE
  7. package.json
  8. README.md
node_modules/open/README.md

open

Open a file or url in the user's preferred application.

Usage

var open = require("open");
open("http://www.google.com");

open taks an optional argument specifying the program to be used to open the file or URL.

open("http://www.google.com", "firefox");

Installation

npm install open

How it works

  • on win32 uses start
  • on darwin uses open
  • otherwise uses the xdg-open script from freedesktop.org

Warning

The same care should be taken when calling open as if you were calling child_process.exec directly. If it is an executable it will run in a new shell.