0.0.1 • Published 7 years ago

cardcast v0.0.1

Weekly downloads
3
License
Apache-2.0
Repository
github
Last release
7 years ago

node-cardcast

A tiny node.js Card Cast API.

Example

const cardcast = require('cardcast');

// View metadata about a deck
cardcast('949PJ')
  .info()
  .then(console.log);

// View call cards of a deck
cardcast('949PJ')
  .calls()
  .then(console.log);

// View response cards of a deck
cardcast('949PJ')
  .responses()
  .then(console.log);

// View the cost of printing a deck
cardcast('949PJ')
  .cost()
  .then(console.log);