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

taxgraphs

v0.1.3

Published

Visualization of US individual income tax rates

Downloads

11

Readme

TaxGraphs

TaxGraphs is a web app that graphs marginal and effective tax rates against income for each US state. Graphs include a comparison between overall state tax rates and a detailed breakdown of each state's tax rate into its individual components. The app currently supports showing graphs for the single and married jointly filing statuses, as well as adjusting income with the standard deduction.

Tax data is collected from each state's official website and the Tax Foundation. The app uses AngularJS and D3.js to display the visualization, and Browserify and LESS for asset compilation.

The app is currently hosted on GitHub Pages and can be visited at http://taxgraphs.io.

Setup

To run the app locally, install Node.js and then execute the following from the project directory:

npm install -g grunt-cli
npm install

Executing grunt will set up grunt-watch to monitor changes and compile the static assets and tax data. It will also host the app locally at localhost:1337 with livereload enabled.

Executing grunt dist will prepare the app for distribution with concatenated and minified assets.

The Grunt tasks and build process originate from the Sails.js new project scaffold.

Data

The tax data is in the data/ folder and is broken down into individual JSON files for federal and each state's tax rates. The json-bake task concatenates all the JSON files together, and a custom Grunt task then preproceses the tax data and minifies the final JSON.

The rate property for each tax can be one of the following types:

  • Number: A flat tax rate.
  • Array: A set of marginal tax brackets.
  • Object: Sets of marginal tax brackets for different filing statuses.

Each marginal tax bracket has the following structure:

[
  Bracket income minimum,
  Bracket marginal tax rate,
  Total tax at the bracket income maximum
]

The following is an example:

"income": {
  "rate": {
    "single": [
      [0, 0.1, 907.5],
      [9075, 0.15, 5081.25],
      [36900, 0.25, 18193.75],
      [89350, 0.28, 45353.75],
      [186350, 0.33, 117541.25],
      [405100, 0.35, 118118.75],
      [406750, 0.396]
    ]
  }
}

The total tax is not available for the last bracket since there is no maximum. The total tax is also not available in any tax bracket for the individual JSON files; it is instead calculated and added to the final JSON file during compilation.

Pull requests to update or correct any of the tax rates are welcome.

License

The data is licensed under the CC BY-NC 4.0 license, while the code for the project is licensed under the MIT license.