Socket
Socket
Sign inDemoInstall

dialog

Package Overview
Dependencies
0
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    dialog

Show alert dialogs using Node.


Version published
Weekly downloads
1.2K
increased by29.66%
Maintainers
1
Install size
6.29 kB
Created
Weekly downloads
 

Readme

Source

Dialog

Simple wrapper around zenity, osascript and vbscript that lets you show native alert dialogs on Linux, OSX and Windows, respectively.

Example

var dialog = require('dialog');

dialog.info('Hello there');

Usage

To show an error dialog:

dialog.err(msg, title, callback);

To show a generic info dialog:

dialog.info(msg, title, callback);

// example, setting title
dialog.info('Ground control to major Tom.', 'My app', function(exitCode) {
	if (exitCode == 0) console.log('User clicked OK');
})

To show a warning dialog:

dialog.warn(msg, title, callback);

// example, without setting title
dialog.warn('This computer will autoterminate itself in 5 seconds.', function(exitCode){
	if (exitCode == 1) console.log('User closed window');
})

exitCode indicates whether the user clicked the default (OK) button (value 0), or if they closed the window or clicked the "No/Cancel" button (value 1).

Both title and callback are optional. Default title shown is "Important".

Credits

Written by Tomás Pollak, except for the MsgBox script which was written by StackOverflow user boflynn.

(c) 2012 Fork Ltd. MIT license.

FAQs

Last updated on 08 Aug 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc