0.1.4 • Published 6 years ago

mitsobox v0.1.4

Weekly downloads
16
License
MIT
Repository
-
Last release
6 years ago

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'
});