1.4.4 • Published 6 years ago

@apigrate/xero v1.4.4

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
6 years ago

apigrate-xero

NodeJS API wrapper for Xero. This connector is for use with private Xero apps only.

Usage

npm install @apigrate-xero

To use the Xero connector, you will need to configure it with your generated Xero consumer key and Xero private key.

var xero = new Xero(
  {
    consumerKey: $xeroConsumerKey,
    privateKey: $xeroPrivateKey,
    measureTiming: true
  },
  LOGGER
  );

xero.getContacts()
.then(function(result){
  console.log("Result: "+ JSON.stringify(result));
})
.fail(function(err){
  console.error(err);
});
1.4.4

6 years ago

1.4.3

6 years ago

1.4.2

6 years ago

1.4.1

6 years ago

1.4.0

6 years ago

1.3.0

6 years ago

1.2.0

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

7 years ago

1.0.0

7 years ago