2013-08-14 22:43:35 +00:00
|
|
|
## Synopsis
|
|
|
|
|
|
|
|
The `shell` module provides functions related to desktop integration.
|
|
|
|
|
|
|
|
An example of opening a URL in default browser:
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
var shell = require('shell');
|
|
|
|
shell.openExternal('https://github.com');
|
|
|
|
```
|
|
|
|
|
|
|
|
## shell.showItemInFolder(fullPath)
|
|
|
|
|
|
|
|
* `fullPath` String
|
|
|
|
|
|
|
|
Show the given file in a file manager. If possible, select the file.
|
|
|
|
|
|
|
|
## shell.openItem(fullPath)
|
|
|
|
|
|
|
|
* `fullPath` String
|
|
|
|
|
|
|
|
Open the given file in the desktop's default manner.
|
|
|
|
|
|
|
|
## shell.openExternal(url)
|
|
|
|
|
|
|
|
* `url` String
|
|
|
|
|
2013-08-29 14:37:51 +00:00
|
|
|
Open the given external protocol URL in the desktop's default manner. (For
|
|
|
|
example, mailto: URLs in the default mail user agent.)
|
2013-08-14 22:43:35 +00:00
|
|
|
|
|
|
|
## shell.moveItemToTrash(fullPath)
|
|
|
|
|
|
|
|
* `fullPath` String
|
|
|
|
|
|
|
|
Move the given file to trash.
|
|
|
|
|
|
|
|
## shell.beep()
|
|
|
|
|
2013-08-29 14:37:51 +00:00
|
|
|
Play the beep sound.
|