1.1.0 • Published 6 years ago
discord-fbi v1.1.0
Discord FBI
A NodeJS Discord RPC that tracks your every (active window) move
Requirements
Usage
There are several ways you can use discord-fbi:
Use it directly from the terminal: (recommended)
npx discord-fbiOr install it globally:
npm install --global discord-fbiand use it in the CLI (just rundiscord-fbiin a terminal!)Usage: discord-fbi [options] Options: -s, --sensitive <process names> pass it one or multiple process names (separated by commas) (e.g opera.exe, Code.exe) to hide their title for sensitive information reasons -h, --help output usage information
Install the package using npm:
npm install discord-fbi --no-optionaland set it up in a JS file like this:const FBI = require('discord-fbi'); // you can pass it an array of process names (e.g opera.exe) to hide their title for sensitive information reasons (e.g. your IP can appear in the title of the process) new FBI();After this, just run the file using
node <filename>.js