cardcast

0.0.1 • Public • Published

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);

Package Sidebar

Install

npm i cardcast

Weekly Downloads

0

Version

0.0.1

License

Apache-2.0

Last publish

Collaborators

  • hydrabolt