# discord-anticrash

> Catches console errors and stops them from terminating the process

Latest version **1.3.0** (published 2022-06-30) · ISC license · 0 weekly downloads

## Install

```sh
npm install discord-anticrash
pnpm add discord-anticrash
yarn add discord-anticrash
bun add discord-anticrash
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.3.0 |
| Published | 2022-06-30 |
| First published | 2022-06-23 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 6.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 4 |
| Author | norbs_#0884 |
| Maintainers | norbs_ |
| Keywords | discord, discord.js, anti, discordjs, discord-anti |

## Links

- npm: https://www.npmjs.com/package/discord-anticrash
- Repository: https://github.com/norbsdev/discord-anticrash
- Homepage: https://github.com/norbsdev/discord-anticrash#readme
- Issues: https://github.com/norbsdev/discord-anticrash/issues
- npm.io page: https://npm.io/package/discord-anticrash

## Dependencies (3)

- [colors](https://npm.io/package/colors.md) ^1.4.0
- [events](https://npm.io/package/events.md) ^3.3.0
- [discord.js](https://npm.io/package/discord.js.md) ^13.8.0

## Recent versions

- 1.3.0 (latest) — 2022-06-30
- 1.2.9 — 2022-06-27
- 1.2.8 — 2022-06-25
- 1.2.7 — 2022-06-24
- 1.2.6 — 2022-06-24
- 1.2.5 — 2022-06-24
- 1.2.4 — 2022-06-24
- 1.2.3 — 2022-06-24
- 1.2.2 — 2022-06-24
- 1.2.1 — 2022-06-24
- 1.2.0 — 2022-06-24
- 1.1.9 — 2022-06-23
- 1.1.8 — 2022-06-23
- 1.1.7 — 2022-06-23
- 1.1.6 — 2022-06-23
- … 5 more at https://npm.io/package/discord-anticrash/versions

## README

# discord-anticrash
  <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="[![Codacy Badge](https://app.codacy.com/project/badge/Grade/ae30c59c0a06457f9dc214c79d8ce9a1)](https://www.codacy.com/gh/norbsdev/discord-anticrash/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=norbsdev/discord-anticrash&amp;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>
  
## What is this and how do I use it?

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)
  <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'
});
```

>### Examples
#### The discord.js v12 Example
```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")
```
#### 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...

---
_Source: https://npm.io/package/discord-anticrash · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
