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

multi-discord-api

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multi-discord-api - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

.eslintrc.json

23

package.json
{
"name": "multi-discord-api",
"version": "1.0.0",
"version": "1.1.0",
"description": "Multi-API for Nodejs Projects and with no rate-limit using JavaScript <3",
"main": "src/index.js",
"scripts": {
"build": "npm run lint && babel ./src -d ./lib",
"test": "nyc mocha --require babel-core/register",
"lint": "eslint ./src --fix",
"commit": "git-cz",
"semantic-release": "semantic-release --branches main"
"semantic-release": "semantic-release --branches main",
"push": "git add . && npm run commit && git push"
},

@@ -28,3 +32,10 @@ "repository": {

"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"mocha": "^9.0.2",
"nyc": "^15.1.0",
"semantic-release": "^17.4.4"

@@ -36,3 +47,11 @@ },

}
},
"engines": {
"node": ">= 14.0.0"
},
"dependencies": {
"discord.js": "^13.0.0-dev.5b6be0c.1625789033",
"node-fetch": "^2.6.1",
"valid-url": "^1.0.9"
}
}
# multi-discord-api
Multi-API for Nodejs Projects and with no rate-limit using JavaScript <3
```
Under-Development and Needs some Ideas to add in the Package
```

19

src/index.js

@@ -1,4 +0,15 @@

module.exports = function Wrork(string) {
if (typeof string !== "string") throw new TypeError("Work wants a string!");
return string.replace(/\s/g, "");
};
const { EmbedGen } = require('./distributions/embedgen');
const { JokeGenerator } = require('./distributions/JokesGen');
const { MemesGenerator } = require('./distributions/MemesGen');
const { Shortner } = require('./distributions/ShortnerLinks');
const { CryptoSector } = require('./distributions/CryptoCurrency');
const { Doggie } = require('./distributions/Doggie');
module.exports = {
EmbedGenerator: EmbedGen,
Jokes: JokeGenerator,
Memes: MemesGenerator,
ShortLink: Shortner,
Crypto: CryptoSector,
Dogs: Doggie,
};

Sorry, the diff of this file is not supported yet

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