discord-anticrash
Version:
Catches console errors and stops them from terminating the process
73 lines (59 loc) • 2.58 kB
Markdown
<p>
<a href="https://www.npmjs.com/package/discord-anticrash"><img src="https://img.shields.io/npm/v/discord-anticrash" alt="NPM version" /></a>
<a href="https://www.npmjs.com/package/discord-anticrash"><img src="https://img.shields.io/npm/dt/discord-anticrash" alt="NPM downloads" /></a>
<a href="https://www.npmjs.com/package/discord-anticrash"><img src="https://img.shields.io/snyk/vulnerabilities/npm/discord-anticrash?color=success&label=package%20vulnerabilities&logo=snyk&logoColor=red" alt="Vulnerabilities" /></a>
<img src="https://img.shields.io/circleci/build/github/norbsdev/discord-anticrash?token=d14b0f80f4a89bfc875fc3c6bbfb0ebcd42e2305" alt="Build" /></a>
<img src="[](https://www.codacy.com/gh/norbsdev/discord-anticrash/dashboard?utm_source=github.com&utm_medium=referral&utm_content=norbsdev/discord-anticrash&utm_campaign=Badge_Grade)" alt="Grade" /></a>
</p>
<p>
<a href="https://www.npmjs.com/package/discord-anticrash"><img src="https://nodei.co/npm/discord-anticrash.png?downloads=true&stars=true" alt="NPM Banner"></a>
</p>
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.
>
`NodeJS`: 16.6.0 and up (for DiscordJS v13)
<br></br>
`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` <br></br>
for v12 `npm i discord.js@12.5.3`
>### Type this in your main file
```js
const antiCrash = require('discord-anticrash')
const noCrashing = new antiCrash(client, {
enableAntiCrash: 'true/false'
});
```
>
```js
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")
```
```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")
```
- 1.3.0
- Added more Badges to the README
- Added this section you are currently reading
- No code updates yet...