![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@glowbot/cogs
Advanced tools
A little cog system(Assumed to be used for discord.js command&event managers)
A wonderful package to help managing commands of discord.js
module.exports.name
,export name
,module.exports.path
,export path
are overwritten by it's file name and full path
Expamples are in the examples directory. You can simpliy import by
const Cog = require("@glowbot/cogs")
//or
const {Cog} = require("@glowbot/cogs")
import {Cog} from "@glowbot/cogs"
import {Cog} from "@glowbot/cogs"
and use by
const cog = new Cog("./cogs") // Path is defaultly "./"
console.log(cog) // Cog(0) [Map] {}
cog.loadAll()
console.log(cog) /* Cog(2) [Map] {
'1' => {
execute: [Function: execute],
name: '1',
path: 'HIDDEN/examples/cogs/1.js'
},
'2' => {
execute: [Function: execute],
name: '2',
path: 'HIDDEN/examples/cogs/2.js'
}
}*/
cog.unloadAll()
console.log(cog) // Cog(0) [Map] {}
cog.loadAll()
cog.unload("1")
console.log(cog) /* Cog(1) [Map] {
'2' => {
execute: [Function: execute],
name: '2',
path: 'HIDDEN/examples/cogs/2.js'
}
}*/
cog.load("1.js")
console.log(cog) /* Cog(2) [Map] {
'1' => {
execute: [Function: execute],
name: '1',
path: 'HIDDEN/examples/cogs/1.js'
},
'2' => {
execute: [Function: execute],
name: '2',
path: 'HIDDEN/examples/cogs/2.js'
}
}*/
My discord bot Invite Link
Cog system was inspired from discord.py
FAQs
A little cog system(Assumed to be used for discord.js command&event managers)
The npm package @glowbot/cogs receives a total of 1 weekly downloads. As such, @glowbot/cogs popularity was classified as not popular.
We found that @glowbot/cogs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.