
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
lvckyworld-api
Advanced tools
The official LvckyWorld-API as NPM PACKAGE
First you have to install the package via npm.
You have to run the command: npm install lvckyworld-api
.
Then you have to import the package.
import * as api from 'lvckyworld-api';
const api = require('lvckyworld-api')
Now you can use the methods.
import * as api from 'lvckyworld-api'
api.MARINA.getDcGlobalBanList().then(response => {
console.log(response)
}).catch(err => { console.log(err) });
interface lwGlobalBan {
globalbans: [
{
clientid: string,
clientavatar: string,
clientname: string,
banreason: string,
bancreatorid: string,
bancreatorname: string,
bannedOn: string,
timestam: string,
permis: boolean
}
]
}
import * as api from 'lvckyworld-api'
api.MARINA.getDiscordUserInfo('761890770935611412').then(response => {
console.log(response)
}).catch(err => { console.log(err) });
interface lwDiscordInfo {
id: string,
username: string,
avatar: string | null,
avatar_decoration: string | null,
discriminator: string,
public_flags: number | null,
banner: string | null,
banner_color: string | null,
accent_color: string | null
}
import * as api from 'lvckyworld-api'
api.MARINA.getLvckyWorldTeamler().then(response => {
console.log(response)
}).catch(err => { console.log(err) });
interface lwTeamler {
teamMembers: [
{
clientname: string,
clientid: string,
roleName: string,
roleId: string,
highestRoleId: number,
sortId: number
}
]
}
import * as api from 'lvckyworld-api'
api.MARINA.getSysAdmins().then(response => {
console.log(response)
}).catch(err => { console.log(err) });
interface lwSysAdmin {
lvckyworld: [
{
name: string,
clid: string,
role: string
}
]
}
import * as api from 'lvckyworld-api'
api.MARINA.isSystemAdmin.then(response => {
console.log(response)
}).catch(err => { console.log(err) });
boolean
import * as api from 'lvckyworld-api'
api.MARINA.isGlobalBanned.then(response => {
console.log(response)
}).catch(err => { console.log(err) });
boolean
FAQs
The official LvckyWorld-API
The npm package lvckyworld-api receives a total of 7 weekly downloads. As such, lvckyworld-api popularity was classified as not popular.
We found that lvckyworld-api 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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.