New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

turtlepopupmaster

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

turtlepopupmaster

eaisily create popups!

latest
npmnpm
Version
1.0.3
Version published
Maintainers
1
Created
Source

TurtlePopupMaster

Easily Create Popups with TurtlePopupMaster!

TurtlePopupMaster is a simple npm package that allows you to create and execute VBScript message boxes directly from Node.js. This is useful for creating interactive scripts or tools on Windows systems. Installation

To use TurtlePopupMaster, install it via npm:

npm install turtlepopupmaster

Usage

Here's how you can create a message box using TurtlePopupMaster:

const { createAndRunVBS } = require('turtlepopupmaster');

// Create and execute a message box with custom input createAndRunVBS("Hello World!", "Greeting", 64); // Information Message icon

Parameters

message: The text to display in the message box.

title: The title of the message box.

type: The type of message box (e.g., button styles and icons). Common types include:

    0: OK button only.

    16: Critical icon.

    32: Question icon.

    48: Warning icon.

    64: Information icon.

    256: Yes/No buttons.

    512: Yes/No/Cancel buttons.

    768: Abort/Retry/Ignore buttons.

Example Usage

Here are a few examples of different message box types:

// Critical Message createAndRunVBS("Something went wrong!", "Error", 16);

// Question Message createAndRunVBS("Are you sure?", "Confirmation", 32);

// Warning Message createAndRunVBS("Be careful!", "Warning", 48);

(this description was written by ai)

Keywords

vbs

FAQs

Package last updated on 30 Mar 2025

Did you know?

Socket

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