🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@popstas/node-hide-console-window

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@popstas/node-hide-console-window

A node module to toggle your app's console window visibility.

2.0.1
latest
Source
npm
Version published
Maintainers
1
Created
Source

node-hide-console-window

A node module to toggle your app's console window visibility. (Can be used with compilers like pkg)

Platforms

  • Windows

Warning

I recently updated this package to match the javascript lint so if you are experiencing any problem related to not finding the method take a look at the usage section again.

Installation

yarn add node-hide-console-window

or

npm install node-hide-console-window

Usage

Using import syntax

import {showConsole, hideConsole} from "node-hide-console-window";

//To hide your console just call:
hideConsole();

//To show it again use:
showConsole();

Using require syntax

const ConsoleWindow = require("node-hide-console-window");

//To hide your console just call:
ConsoleWindow.hideConsole();

//To show it again use:
ConsoleWindow.showConsole();

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

Keywords

Hide

FAQs

Package last updated on 23 Jan 2022

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