Socket
Socket
Sign inDemoInstall

node-cheeze-wizards-api

Package Overview
Dependencies
9
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    node-cheeze-wizards-api

Cheeze Wizards API Node Wrapper


Version published
Maintainers
1
Install size
451 kB
Created

Readme

Source

Cheeze Wizards API Node Wrapper

Build Status npm version Coverage Status Latest Documentation dependencies Status devDependencies Status

Node Wrapper for the Alchemy Cheeze Wizards API: https://docs.alchemyapi.io/docs/cheeze-wizards-api

You'll need a valid API key and a verified email address. To get your key, just sign up on the Cheeze Wizards developer page: https://www.cheezewizards.com/cheezyverse

Installation

npm install --save node-cheeze-wizards-api

Usage

// Import the desired module
const { CheezeWizardsAPI } = require('node-cheeze-wizards-api');

// Create an instance
const cheezeWizardsAPI = new CheezeWizardsAPI('your@email.com', 'your-api-token');

// Get stuff done
cheezeWizardsAPI
    .wizard(1)
    .then(response => {
        console.log(response.data);
        console.log(response.status);
    })
    .catch(error => {
        console.log(error);
    });

Methods

Duel

duel();
duel(duelId);

Duels

duels();
duels(params);

Wizard

wizard();
wizard(wizardId);

Wizards

wizards();
wizards(params);

FAQs

Last updated on 26 Aug 2019

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc