Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

myinfo

GsLKS9MIT1.1.1

Displays information about your system, device and network.

MyInfo, About Me, Better NeoFech, All about my system

readme

MyInfo

Displays information about your system, device and network.

CHANGELOG

Lib Name Version Stars

Command Usage (INSTALLING):

NPM

npm install -g myinfo

Command Usage (Using)

Use MyInfo easily with just a command:

myinfo

WARNING: If your MyInfo is broken, try running the command down below:

mifix

Usage (API/Coding)

You can also use MyInfo as a librairy normaly.

Importing 'MyInfo'

// require myinfo
const mi = require("myinfo");

Basic Script

  • This is similar to using the normal command.
async function MyInfoNormal() {
    // normal output
  try {
    // do something...
    const Mi = await mi({ output: "normal" });
    return await Mi;
  } catch (error) {
    return;
  }
}

MyInfoNormal();
  • Using json allows a easy integration to your apps
async function MyInfoJson() {
  // json usage
  try {
    const Mi = await mi({ output: "json" });
    // do somenthing
    // example
    console.log(JSON.parse(Mi));
    // example: console.log(JSON.parse(Mi).ip); 
    // shows ip
  } catch (error) {
    return;
  }
}

MyInfoJson();

Info

'MyInfo' displays system information, allowing general use of the informations.

changelog

MyInfo Changelog

This is a public list of changes made for each MyInfo update.

1.0.0 (Mar 23, 2024)

  • [+] Released

1.0.1 (Mar, 23, 2024 - Global Time)

  • [+] General error fixing
  • [+] Working commands

1.1.0

  • New Colors
  • Text Fix
  • MiFix improved
  • AT-ERR Updated to 0.2

1.1.1

  • [+] MyInfo command version fied
An error found in at-err was making the MyInfo 1.1.0 broken