1.3.0 • Published 2 years ago

discord-anticrash v1.3.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

discord-anticrash

Discord-antiCrash is a npm package that helps prevent bot termination due to Uncaught/Unhandled errors made by your code.

You can use it by simply doing the steps below.

Requirements

NodeJS: 16.6.0 and up (for DiscordJS v13) DiscordJS: v13.8.0 (for v13) v12.5.3 (for v12)

Installation

npm i discord-anticrash@latest If you do not have discordjs, read below:

for v13 npm i discord.js@13.8.0 for v12 npm i discord.js@12.5.3

Type this in your main file

const antiCrash = require('discord-anticrash')
const noCrashing = new antiCrash(client, {
  enableAntiCrash: 'true/false'
});

Examples

The discord.js v12 Example

const Discord = require("discord.js");
const client = new Discord.Client();
const antiCrash = require('discord-anticrash')

const noCrash = new antiCrash(client, { enableAntiCrash: 'true' });

client.login("token")

#### The discord.js v13 example
```js
const Discord = require("discord.js");
const client = new Discord.Client(
{intents:
[/**your intents*/]
});
const antiCrash = require('discord-anticrash')

const noCrash = new antiCrash(client, {
  enableAntiCrash: 'true'
});

client.login("token")

New Updates

  • 1.3.0
  • Added more Badges to the README
  • Added this section you are currently reading
  • No code updates yet...
1.3.0

2 years ago

1.2.9

2 years ago

1.2.8

2 years ago

1.2.7

2 years ago

1.2.6

2 years ago

1.2.5

2 years ago

1.2.4

2 years ago

1.2.3

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.2.0

2 years ago

1.1.9

2 years ago

1.1.8

2 years ago

1.1.7

2 years ago

1.1.6

2 years ago

1.1.5

2 years ago

1.1.4

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago