npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

freshbooks-xmltv2

v2.1.0

Published

Node.js wrapper for FreshBooks (www.freshbooks.com) API

Downloads

4

Readme

Freshbooks.js

Build Status npm version Dependency Status

Freshbooks.js is a node.js module providing a wrapper to the [FreshBooks] (http://www.freshbooks.com) API.

All API method are fairly well documented at [FreshBooks Developers] (http://developers.freshbooks.com) but if you find a discrepancy between the docs and this wrapper feel free to file an "Issue".

Installation

$ npm install freshbooks

Note: This module utilises libxmljs. You will need have the libxml2 library installed and also the libxml2-devel (libxml2-dev on debian systems) package. This comes with the xml2-config utility that is needed for compiling. This command must be in your path.

Example

var FreshBooks = require("freshbooks");

var freshbooks = new FreshBooks(api_url, api_token)
  , invoice = new freshbooks.Invoice();

invoice.get(invoice_id, function(err, invoice) {
  if(err) { //returns if an error has occured, ie invoice_id doesn't exist.
    console.log(err);
  } else {
    console.log("Invoice Number:" + invoice.number);
  }
});

Changelog

v2.0.0 - 2016-09-03

  • Fixed an issue with the Content-Length header not respecting multi-byte strings encoded with UTF-8 #2

Note: this may break existing code that works around this, hence the major bump to v2.0.0. Most implementations will be able to upgrade to v2.0.0 without any issues.

Update 2016-05-31: Added support for node v5 and v6. Updated libxmljs to 0.18.0. Bumped the version to 1.0.1.

Update 05/10/2015: Project maintenance taken over by Flow XO. Fixed issue with Invoice lines. Created invoice.lines.add function. Added support for node v4. Updated libxmljs to 0.14.3. Bumped the version to 1.0.0.

Note: this is a backwards-compatible release. If you were previously using v0.2.1, you should be safe to upgrade to v1.0.0.

Update 24/08/2013: Bumped the version to 0.2.1. Fixed a bug preventing invoice lines from being created/updated. Updated libxmljs to 0.8.1. Fixed Projects and Category tests from failing.

Update 17/10/2012: ...and version 0.2.0 has landed! We are now using the latest version of libxmljs (currently version 0.6.1). We have also added an "options" object to contain invoice_id, subject and message to [Estimate,Invoice].sendByEmail, allowing for custom email messages.

Update 18/08/2012: Version 0.1.2 has just been pushed. There is now an "options" object containing page, per_page, pages and total accessible from list methods.

Update 14/07/2012: Just entered version 0.1.1! Most methods now accept an optional id first argument (similar to how invoice.get() works). Examples have been updated and all tests are passing.

Update 08/07/2012: We've just entered version 0.1.0! All required API features are now implemented excluding callback and system.

Update 05/06/2012: I've implimented about 75% of the API. Most of the core features are working but i'm still working through some minor issues. Tests are working now though!

Update 04/06/2012: This project is very much a WORK IN PROGRESS. So far I've implimented the majority of the Invoice API and am tidying up the code before launching into the other APIs. I've also decided to take some liberties on some aspects of the API, ie replacing invoice.lines.add/delete/update methods with Array.pop/push, as frankly there are better ways to interact with the API in JS than is currently implimented.

Credits

The vast majority of the work in this repo was performed by Marc Loney. In 2015 Flow XO took over the maintenance of the project.

Flow XO would like to thank Marc for all his original work on this project!

License

(The MIT License)

Copyright (c) 2015 Flow XO <[email protected]>

Permission is hereby granted, free of charge, to any person obtaininga copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.