number-to-words-api
v1.0.0
Published
A simple Node.js API to convert numbers into words using the Indian Numbering System.
Maintainers
Readme
Number to Words API (Indian Numbering System)
A simple Node.js API that converts numbers into words using the Indian Numbering System (lakh, crore format).
🚀 Features
✅ Converts numbers into words based on the Indian numbering system
✅ Supports numbers up to crores
✅ Uses Express.js for easy API handling
✅ No external npm libraries for conversion
✅ Returns properly formatted words
📌 Installation
const { number_to_words } = require("number-to-words-api");
const {number}=req.body;
const result = await number_to_words(number);
exp
{
"number": 12220
}