n8n-nodes-extenso
v0.1.0
Published
n8n community node wrapper for 'extenso'
Maintainers
Readme
n8n-nodes-extenso
Community node for n8n that wraps extenso.
It receives number and options, calls extenso(number, options), and writes the result to an output field.
Installation
In n8n self-hosted:
- Go to Settings → Community Nodes
- Install:
n8n-nodes-extensoOr install manually in your n8n custom nodes directory:
npm install n8n-nodes-extensoRestart n8n after installation.
Usage
Add the Extenso node and configure:
- Number: the numeric value or expression, for example
{{$json.value}} - Options: JSON passed directly to
extenso
Example options:
{
"mode": "currency",
"currency": {
"code": "BRL"
}
}Example input:
{
"value": 1234.56
}Example output:
{
"text": "mil duzentos e trinta e quatro reais e cinquenta e seis centavos"
}Development
npm install
npm run buildLicense
MIT
