Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.51 KB

README.md

File metadata and controls

36 lines (28 loc) · 1.51 KB

TaxJarConnect

A wrapper for Meteor style synchronous TaxJar API calls.

Example Usage

Meteor.methods({

  salesTax : function () {
    var taxJar = new TaxjarConnect("aa853bb5e5e1ae317487a63d0a3d59c8");
    var rates = taxJar.sync('ratesForLocation', 90002);
    return rates;
  }
  
  });

Wrapped API

This package wraps the methods below. These are all the methods that are listed in the taxjar-node github documentation & the taxjar-website documentation.