Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

anticrash

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

anticrash

<img src="https://img.shields.io/npm/dt/anticrash" alt="NPM download

  • 1.1.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

discord-anticrash

NPM version NPM downloads Vulnerabilities Build Grade

NPM Banner

What is this and how do I use it?

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 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('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('anticrash')

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

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

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

client.login("token")

Support
New Updates
  • 1.1.0
  • Added more Badges to the README
  • Added this section you are currently reading

FAQs

Package last updated on 01 May 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc