Socket
Socket
Sign inDemoInstall

selfbot.js-v14

Package Overview
Dependencies
42
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.1.7 to 3.1.8

2

package.json
{
"name": "selfbot.js-v14",
"version": "3.1.7",
"version": "3.1.8",
"description": "modules pour selfbot dev by mizuki",

@@ -5,0 +5,0 @@ "main": "./src/index.js",

@@ -10,5 +10,5 @@ <div align="center">

<strong>Welcome to `discord.js-selfbot-v13@v3.1`, based on `discord.js@13.17`</strong>
<strong>Welcome to `selfbot.js-v14`, based on `selfbot.js-v14`</strong>
- discord.js-selfbot-v13 is a [Node.js](https://nodejs.org) module that allows user accounts to interact with the Discord API v9.
- selfbot.js-v14 is a [Node.js](https://nodejs.org) module that allows user accounts to interact with the Discord API v9.

@@ -18,5 +18,5 @@

<p>
<a href="https://www.npmjs.com/package/discord.js-selfbot-v13"><img src="https://img.shields.io/npm/v/discord.js-selfbot-v13.svg" alt="npm version" /></a>
<a href="https://www.npmjs.com/package/discord.js-selfbot-v13"><img src="https://img.shields.io/npm/dt/discord.js-selfbot-v13.svg" alt="npm downloads" /></a>
<a href="https://github.com/aiko-chan-ai/discord.js-selfbot-v13/actions"><img src="https://github.com/aiko-chan-ai/discord.js-selfbot-v13/actions/workflows/lint.yml/badge.svg" alt="Tests status" /></a>
<a href="https://www.npmjs.com/package/selfbot.js-v14"><img src="https://img.shields.io/npm/v/selfbot.js-v14.svg" alt="npm version" /></a>
<a href="https://www.npmjs.com/package/selfbot.js-v14"><img src="https://img.shields.io/npm/dt/selfbot.js-v14.svg" alt="npm downloads" /></a>
<a href="https://github.com/aiko-chan-ai/selfbot.js-v14/actions"><img src="https://github.com/aiko-chan-ai/selfbot.js-v14/actions/workflows/lint.yml/badge.svg" alt="Tests status" /></a>
</p>

@@ -30,7 +30,7 @@ </div>

`discord.js-selfbot-v13` is currently in maintenance mode. New features are not actively being added but existing features and new versions of discord are supported as possible. There are some major architectural changes which need to be added to improve the stability and security of the project. I don't have as much spare time as I did when I started this project, so there is not currently any plan for these improvements.
`selfbot.js-v14` is currently in maintenance mode. New features are not actively being added but existing features and new versions of discord are supported as possible. There are some major architectural changes which need to be added to improve the stability and security of the project. I don't have as much spare time as I did when I started this project, so there is not currently any plan for these improvements.
### <strong>[Document Website](https://discordjs-self-v13.netlify.app/)</strong>
### <strong>[Example Code](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/tree/main/examples)</strong>
### <strong>[Example Code](https://github.com/aiko-chan-ai/selfbot.js-v14/tree/main/examples)</strong>

@@ -44,3 +44,3 @@ ## Features (User)

- [X] Documentation
- [x] Voice & [Video stream](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/issues/293)
- [x] Voice & [Video stream](https://github.com/piixish)
- [ ] Everything

@@ -55,3 +55,3 @@

```sh-session
npm install discord.js-selfbot-v13@latest
npm install selfbot.js-v14@latest
```

@@ -62,3 +62,3 @@

```js
const { Client } = require('discord.js-selfbot-v13');
const { Client } = require('selfbot.js-v14');
const client = new Client();

@@ -106,3 +106,3 @@

## Need help?
Github Discussion: [Here](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/discussions)
Github Discussion: [Here](https://github.com/aiko-chan-ai/selfbot.js-v14/discussions)

@@ -121,5 +121,5 @@ ## Credits

[![Star History Chart](https://api.star-history.com/svg?repos=aiko-chan-ai/discord.js-selfbot-v13&type=Date)](https://star-history.com/#aiko-chan-ai/discord.js-selfbot-v13&Date)
[![Star History Chart](https://api.star-history.com/svg?repos=aiko-chan-ai/selfbot.js-v14&type=Date)](https://star-history.com/#aiko-chan-ai/selfbot.js-v14&Date)
# From Github with love 💕

@@ -22,3 +22,3 @@ 'use strict';

* @param {GuildMember} member The member that has left/been kicked from the guild
* @deprecated See {@link https://github.com/aiko-chan-ai/discord.js-selfbot-v13/issues/197 this issue} for more information.
* @deprecated See {@link https://github.com/aiko-chan-ai/selfbot.js-v14/issues/197 this issue} for more information.
*/

@@ -25,0 +25,0 @@ if (shard.status === Status.READY) client.emit(Events.GUILD_MEMBER_REMOVE, member);

@@ -28,3 +28,3 @@ 'use strict';

* @param {GuildMember} newMember The member after the update
* @deprecated See {@link https://github.com/aiko-chan-ai/discord.js-selfbot-v13/issues/197 this issue} for more information.
* @deprecated See {@link https://github.com/aiko-chan-ai/selfbot.js-v14/issues/197 this issue} for more information.
*/

@@ -31,0 +31,0 @@ if (shard.status === Status.READY && !member.equals(old)) client.emit(Events.GUILD_MEMBER_UPDATE, old, member);

@@ -15,3 +15,3 @@ 'use strict';

* @param {GuildMember} member The member that has joined a guild
* @deprecated See {@link https://github.com/aiko-chan-ai/discord.js-selfbot-v13/issues/197 this issue} for more information.
* @deprecated See {@link https://github.com/aiko-chan-ai/selfbot.js-v14/issues/197 this issue} for more information.
*/

@@ -18,0 +18,0 @@ client.emit(Events.GUILD_MEMBER_ADD, member);

@@ -206,3 +206,3 @@ 'use strict';

* client.user.setPresence({ activities: [{ name: 'with discord.js' }], status: 'idle' });
* @see {@link https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/RichPresence.md}
* @see {@link https://github.com/aiko-chan-ai/selfbot.js-v14/blob/main/Document/RichPresence.md}
*/

@@ -252,3 +252,3 @@ setPresence(data) {

* client.user.setActivity('discord.js', { type: 'WATCHING' });
* @see {@link https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/RichPresence.md}
* @see {@link https://github.com/aiko-chan-ai/selfbot.js-v14/blob/main/Document/RichPresence.md}
*/

@@ -255,0 +255,0 @@ setActivity(name, options = {}) {

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc