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

@gratcy/angka-terbilang-indonesia

v1.0.7

Published

Angka Terbilang in NodeJS for Converting Decimal to an Indonesian Wording format

Readme

NPM

Angka to Terbilang NPM Version Minified Size NPM Downloads

Mengkonversi angka ke dalam bilangan bahasa Indonesia dan bahasa Inggris. Misalnya dari 123, menjadi seratus dua puluh tiga. Atau bisa juga 123.45 menjadi seratus dua puluh tiga koma empat lima. Bisa juga kedalam bahasa inggris menjadi one hundred twenty three dan one hundred twenty three and four five.

Number or Amount to Words

Convert number into Indonesia and English. Eg: from 123 in Indonesian, become seratus dua puluh tiga. Also in decimal 123.45 become seratus dua puluh tiga koma empat lima. Also in english become one hundred twenty three and one hundred twenty three and four five.

Instalasi

via npm:

npm install @gratcy/angka-terbilang-indonesia

via yarn:

yarn add @gratcy/angka-terbilang-indonesia

atau langsung dari web browser

<script src="https://unpkg.com/@gratcy/angka-terbilang-indonesia/build/index.min.js">

Penggunaan

Javascript user

"use strict";
const angkaTerbilang = require("@gratcy/angka-terbilang-indonesia");

console.log(angka.toTerbilang(1123)); // seribu seratus dua puluh tiga
console.log(angka.toTerbilang(1123, { dec: ".", lang: "en" })); // one thousand one hundred twenty three
console.log(angka.toTerbilang(1123.57)); // seribu seratus dua puluh tiga koma lima tujuh
console.log(angka.toTerbilang(1123.57, { dec: ".", lang: "en" })); // one thousand one hundred twenty three

Typescript user

"use strict";
import toTerbilang from "@gratcy/angka-terbilang-indonesia";

console.log(toTerbilang(1123, { dec: ",", lang: "id" }));
console.log(toTerbilang(1123.57, { dec: ",", lang: "en" }));

Option Parameter

| Keterangan | Parameter | Value | | ---------- | --------- | --------------- | | Bahasa | lang | default: id | | | | id: Indonesia | | | | en: Inggris | | Desimal | dec | default: . |

Mendukung bilangan besar, hingga 1063.

| Angka | Satuan | | :-------------: | :--------------: | | 101 | puluhan | | 102 | ratusan | | 103 | ribu | | 106 | juta | | 109 | milyar | | 1012 | triliun | | 1015 | quadriliun | | 1018 | quintiliun | | 1021 | sextiliun | | 1024 | septiliun | | 1027 | oktiliun | | 1030 | noniliun | | 1033 | desiliun | | 1036 | undesiliun | | 1039 | duodesiliun | | 1042 | tredesiliun | | 1045 | quattuordesiliun | | 1048 | quindesiliun | | 1051 | sexdesiliun | | 1054 | septendesiliun | | 1057 | oktodesiliun | | 1060 | novemdesiliun | | 1063 | vigintiliun |

Catatan

Dibuat untuk kebutuhan Bareksa Payment Tribe

Fork and Modified

https://github.com/dimaskiddo/angka-terbilang-nodejs

License

Licensed under Beerware.