packages-madness
v1.0.0
Published
A package that contains 10+ useful package for people to use, more are coming in, we are constantly updating the packages that they updated.
Downloads
2
Readme
Packages-Madness
This is a library that contains 10+ useful package that will help you code in javascript.
examples
discord.js
const pm = require("packages-madness")
let client = new pm.Discord.Client()
client.login("your discord token")
discord.lib
const pm = require("packages-madness")
pm.dl.login("your bot token from discord", "your bot game")
express
const pm = require("packages-madness")
let app = pm.express()
app.listen(3000)
request
const pm = require("packages-madness")
pm.request('https://google.com', function(error, response, body){
console.log("error: " + error)
console.log("statusCode: " + response && response.statusCode)
console.log("body: " + body)
})
node-fetch
const pm = require("packages-madness")
pm.fetch('https://github.com')
.then(res => res.text())
.then(body => console.log(body))
chalk
const pm = require("packages-madness")
console.log(pm.chalk.blue("hello world!"))
#faq
Q: what if one of the package is not updated to the latest or I want it to be a older version?
A: submit a version update request using this form