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

income-tax-sg

v0.1.1

Published

Calculate individual income tax for Singapore tax residents

Readme

income-tax-sg

Calculate individual income tax for Singapore tax residents.

Installation

npm install income-tax-sg

Usage

Calculate tax from chargeable income

import { calculateTaxFromChargeableIncome } from "income-tax-sg";

const tax = calculateTaxFromChargeableIncome(120_000);
// 7950

Calculate tax from income breakdown

import { calculateTax } from "income-tax-sg";

const result = calculateTax({
  employmentIncome: 150_000,
  employmentExpenses: 2_000,
  otherIncome: 5_000,
  donations: 1_000,
  personalReliefs: 20_000,
  taxRebates: 200,
});
// {
//   chargeableIncome: 130500,
//   grossTax: 9525,
//   netTaxPayable: 9325
// }

All fields in the params object are optional and default to 0. Several fields are grouping categories — you should sum the relevant items before passing them in:

  • otherIncome — the total of all non-employment income, including:

    • Trade, business, profession or vocation income
    • Dividends
    • Interest
    • Rent from property
    • Royalty, charge, estate/trust income
    • Gains or profits of an income nature
  • donations — approved donations (before the 2.5× tax deduction multiplier, which is applied automatically)

  • personalReliefs — the total of all personal reliefs claimed, including:

    • Earned income relief
    • Spouse relief / spouse relief (disability)
    • Qualifying child relief (QCR) / child relief (disability)
    • Working mother's child relief
    • Parent relief / parent relief (disability)
    • Grandparent caregiver relief
    • Sibling relief (disability)
    • CPF/provident fund relief
    • Life insurance relief
    • CPF cash top-up relief (self, dependant and Medisave account)
    • Supplementary Retirement Scheme (SRS) relief
    • NSman (self/wife/parent) relief

    Note: the $80,000 overall relief cap is applied automatically.

  • taxRebates — the total of all tax rebates, including:

    • Parenthood tax rebate
    • Any other applicable tax rebates

Assessment year

Both functions accept an optional assessment year parameter (default: 2026). Must be an integer >= 2026.

calculateTaxFromChargeableIncome(120_000, 2026);
calculateTax({ employmentIncome: 120_000 }, 2026);

Calculation logic

  1. Net employment income = employment income − employment expenses (floored at 0)
  2. Total income = net employment income + other income
  3. Assessable income = total income − (donations × 2.5)
  4. Chargeable income = assessable income − personal reliefs (capped at $80,000)
  5. Gross tax = progressive tax on chargeable income
  6. Net tax payable = gross tax − tax rebates (floored at 0)

Sources

License

ISC