New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

deceit.js

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deceit.js

Javascript library for the Deceit API.

latest
Source
npmnpm
Version
1.4.9
Version published
Maintainers
1
Created
Source

About

deceit.js is a Node.js module to interact with the Deceit 1 API.

Installation

Latest version of Node.js required

npm install deceit.js

Example usage

Log the username and level of the user with id #6997076:

const {users} = require('deceit.js');

users.fetch('6997076').then(user => console.log(user.username, user.level));

Log ticket highscores:

const {highscores} = require('deceit.js');

highscores.fetch('tickets').then(console.log);

Log servers informations:

const {parties} = require('deceit.js');

parties.fetch().then(party => console.log(party.availableServers));

Keywords

deceit

FAQs

Package last updated on 02 Aug 2023

Did you know?

Socket

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.

Install

Related posts