![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Simple wrapper around zenity, osascript and vbscript that lets you show native alert dialogs on Linux, OSX and Windows, respectively.
var dialog = require('dialog');
dialog.info('Hello there');
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".
Written by Tomás Pollak, except for the MsgBox script which was written by StackOverflow user boflynn.
(c) 2012 Fork Ltd. MIT license.
FAQs
Show alert dialogs using Node.
The npm package dialog receives a total of 339 weekly downloads. As such, dialog popularity was classified as not popular.
We found that dialog demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.