https://github.com/alexthemaster/discord-fbi
A NodeJS Discord RPC that tracks your every (active window) move
https://github.com/alexthemaster/discord-fbi
discord discord-fbi discord-rpc nodejs-discord-rpc
Last synced: 6 months ago
JSON representation
A NodeJS Discord RPC that tracks your every (active window) move
- Host: GitHub
- URL: https://github.com/alexthemaster/discord-fbi
- Owner: alexthemaster
- Created: 2019-09-08T14:14:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-06-20T18:33:32.000Z (about 2 years ago)
- Last Synced: 2024-12-08T09:16:16.376Z (over 1 year ago)
- Topics: discord, discord-fbi, discord-rpc, nodejs-discord-rpc
- Language: JavaScript
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Discord FBI
## A NodeJS Discord RPC that tracks your every (active window) move
### Requirements
- [Node.js](https://nodejs.org/en/)
- [node-gyp](https://github.com/nodejs/node-gyp)
### Usage
There are several ways you can use discord-fbi:
- Use it directly from the terminal: (recommended)
1. `npx discord-fbi`
1. Or install it globally: `npm install --global discord-fbi` and use it in the CLI (just run `discord-fbi` in a terminal!)
```
Usage: discord-fbi [options]
Options:
-s, --sensitive 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-optional` and set it up in a JS file like this:
```js
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 .js`