Socket
Socket
Sign inDemoInstall

terminaltools

Package Overview
Dependencies
69
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    terminaltools

terminaltools allows you to do tricks in the terminal like play videos, show images and more.


Version published
Weekly downloads
346
increased by7.45%
Maintainers
1
Install size
101 MB
Created
Weekly downloads
 

Readme

Source

TerminalTools

Version 3.0.0

Tools for your terminal


TerminalTools provides little bits of fun for your average terminal

Installation

TerminalTools is a Node.js module available through the npm registry. Installation is done using the npm install command:

$ npm install terminaltools

You can also just add it to your package.json file, and it will be installed the next time you run npm install:

{
  "dependencies": {
    "terminaltools": "^3.0.0"
  }
}

Basic Usage

const TerminalTools = require('terminaltools');
// renderVideo
let frames = TerminalTools.renderVideo('path/to/video.mp4');
let i = frames.length;
let interval = setInterval(() => {
  console.log(frames[i]);
  i--;
  if (i < 0) {
    clearInterval(interval);
  }
}, 1000 / 30);

// renderImage
TerminalTools.renderImage('path/to/image.png').then(console.log);

// Banner
let banner = new TerminalTools.Banner();
banner.load();
banner.write('Hello, World!');

// Mute
let mute = new TerminalTools.Mute();
mute.mute();
console.log("You won't see this");
mute.unmute();
console.log("You will see this");
mute.getOutput(); // You won't see this
mute.clearOutput();

// fun.Matrix
TerminalTools.fun.Matrix.start();
setTimeout(() => {
  TerminalTools.fun.Matrix.stop();
}, 5000);

// fun.Snowfall
TerminalTools.fun.Snowfall.start();
setTimeout(() => {
  TerminalTools.fun.Snowfall.stop();
}, 5000);

// fun.Rainbow
TerminalTools.fun.Rainbow("Hello, World!");

For API usage, and more specific examples, refer to the API.

Contributing

To help with the development of TerminalTools, you can contribute to the project by submitting issues, pull requests, or shooting me an email at RedYetiDev@gmail.com.

License

TerminalTools is licensed under the MIT license. This means that you can use TerminalTools in any way you want, as long as you give credit to me, the original author (RedYetiDev).

What is "as long as you give credit to me"?

Giving credit is showing that you used TerminalTools in your project. This can be done by linking to the GitHub repository, or by linking to the npm package.

Keywords

FAQs

Last updated on 12 May 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc