Synopsis
The shell
module provides functions related to desktop integration.
An example of opening a URL in default browser:
var shell = require('shell');
shell.openExternal('https://github.com');
shell.showItemInFolder(fullPath)
Show the given file in a file manager. If possible, select the file.
shell.openItem(fullPath)
Open the given file in the desktop's default manner.
shell.openExternal(url)
Open the given external protocol URL in the desktop's default manner. (For example, mailto: URLs in the default mail user agent.)
shell.moveItemToTrash(fullPath)
Move the given file to trash.
shell.beep()
Play the beep sound.