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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@mesoofito214/us-tax-brackets-2025

v1.0.0

Published

2025 US Federal & State Tax Brackets Data - Free tax calculator utility with accurate tax brackets for all 50 states. Powered by TheTaxCalc.com

Downloads

17

Readme

🇺🇸 US Tax Brackets 2025 - npm Package

Accurate 2025 US Federal & State Tax Brackets Data for Node.js

Powered by TheTaxCalc.com — Free Online Tax Calculator for All 50 States

npm version License: MIT

🧮 Try the Free Tax Calculator

👉 TheTaxCalc.com — Calculate your federal and state taxes instantly for all 50 US states. No signup required, 100% free.

State Tax Calculators

| State | Calculator | State | Calculator | |-------|-----------|-------|-----------| | California | CA Tax Calc | New York | NY Tax Calc | | Texas | TX Tax Calc | Florida | FL Tax Calc | | Illinois | IL Tax Calc | Pennsylvania | PA Tax Calc | | Ohio | OH Tax Calc | Georgia | GA Tax Calc | | New Jersey | NJ Tax Calc | Washington | WA Tax Calc |

👉 See all 50 states →


📦 Installation

npm install us-tax-brackets-2025

🚀 Quick Start

const {
  calculateFederalTax,
  calculateTotalTax,
  getNoTaxStates,
  getStateInfo
} = require('us-tax-brackets-2025');

// Calculate federal tax for a single filer
const federal = calculateFederalTax(85000, 'single');
console.log(`Federal Tax: $${federal.tax.toFixed(2)}`);
console.log(`Effective Rate: ${(federal.effectiveRate * 100).toFixed(1)}%`);
console.log(`Marginal Rate: ${(federal.marginalRate * 100).toFixed(1)}%`);

// Calculate total tax (federal + state) for California
const total = calculateTotalTax(85000, 'CA', 'single');
console.log(`Federal Tax: $${total.federalTax.toFixed(2)}`);
console.log(`State Tax: $${total.stateTax.toFixed(2)}`);
console.log(`Total Tax: $${total.totalTax.toFixed(2)}`);
console.log(`Take Home: $${total.takeHome.toFixed(2)}`);

// Get states with no income tax
const noTaxStates = getNoTaxStates();
console.log('No income tax states:', noTaxStates.map(s => s.name));

// Get info about a specific state
const caInfo = getStateInfo('CA');
console.log(`California top rate: ${(caInfo.rate * 100).toFixed(1)}%`);

📊 Features

  • 2025 Federal Tax Brackets — All 4 filing statuses (Single, MFJ, MFS, HOH)
  • All 50 State Tax Rates — Top marginal rates for every state
  • Standard Deductions — 2025 standard deduction amounts
  • Tax Calculator — Calculate federal & state tax from income
  • Zero Dependencies — Lightweight, no external packages
  • TypeScript Support — Full type definitions included
  • Bracket Breakdown — See exactly how much tax in each bracket

📖 API Reference

calculateFederalTax(income, filingStatus)

Calculate federal tax based on taxable income and filing status.

| Parameter | Type | Default | Description | |-----------|------|---------|-------------| | income | number | required | Annual taxable income | | filingStatus | string | 'single' | 'single', 'marriedFilingJointly', 'marriedFilingSeparately', 'headOfHousehold' |

Returns: { tax, effectiveRate, marginalRate, breakdown }

calculateTotalTax(income, stateCode, filingStatus)

Calculate total tax including federal and state taxes.

| Parameter | Type | Default | Description | |-----------|------|---------|-------------| | income | number | required | Annual gross income | | stateCode | string | required | Two-letter state code (e.g., 'CA') | | filingStatus | string | 'single' | Filing status |

Returns: { grossIncome, deduction, taxableIncome, federalTax, stateTax, totalTax, takeHome, ... }

getFederalBrackets(filingStatus)

Get the tax brackets array for a filing status.

getStateInfo(stateCode)

Get state tax information including name, rate, and calculator URL.

getNoTaxStates()

Get an array of all states with no income tax.

getStandardDeduction(filingStatus)

Get the 2025 standard deduction amount for a filing status.


📋 2025 Federal Tax Brackets (Single)

| Rate | Income Range | |------|-------------| | 10% | $0 – $11,925 | | 12% | $11,925 – $48,475 | | 22% | $48,475 – $103,350 | | 24% | $103,350 – $197,300 | | 32% | $197,300 – $250,525 | | 35% | $250,525 – $626,350 | | 37% | Over $626,350 |

Need a detailed breakdown? Try the free calculator at TheTaxCalc.com


🏷️ States with No Income Tax

Alaska, Florida, Nevada, New Hampshire, South Dakota, Tennessee, Texas, Washington, Wyoming

Calculate your take-home pay → TheTaxCalc.com


🔗 Useful Links


📄 License

MIT © TheTaxCalc


⭐ Found this useful? Star the repo and try TheTaxCalc.com for a full tax calculation experience!