mitsobox
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/mitsobox package

0.1.4 • Public • Published

Mitsobox 📦

npm version Dependency Status Contributions welcome License

Basic Overview

Mitsobox is a library for nodeJS scripts that calls native win32 API directly, to show dialog boxes. In simpler words, it creates a message box using native windows services (Yeah it's only for windows 😝).



Install with yarn

yarn add mitsobox

Install with npm

npm i mitsobox --save

Usage

const mitsobox = require('mitsobox');

// Display a messagebox only with OK key
mitsobox.ok("The coolest title ever", "The content");

// Display a messagebox with OK - CANCEL keys, then get response
mitsobox.okCancel("Another cool title", "Another cool content").then(function (action) {
  console.log(action); // 'OK' or 'CANCEL'
});

// Display a messagebox with ABORT - RETRY - IGNORE keys, then get response
mitsobox.abortRetryIgnore("Breaking news!", "Nasa has confirmed that the earth is FLAT").then(function (action){
  console.log(action); // 'ABORT' or  'RETRY' or 'IGNORE'
});

Readme

Keywords

none

Package Sidebar

Install

npm i mitsobox

Weekly Downloads

10

Version

0.1.4

License

MIT

Last publish

Collaborators

  • jimfilippou