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

n8n-nodes-cleantextlab

v0.1.0

Published

n8n community node for CleanTextLab - 35+ privacy-focused text processing tools

Readme

n8n-nodes-cleantextlab

This is an n8n community node that provides access to CleanTextLab - a privacy-focused text processing suite with 35+ tools.

n8n is a fair-code licensed workflow automation platform.

✨ Key Features:

  • 35+ text processing tools in one node
  • Configurable options (CSV delimiters, hash algorithms, encoding, etc.)
  • Privacy-first: Deterministic processing, no AI hallucinations
  • 5,000 API calls/day on Pro plan
  • Perfect for data pipelines, ETL workflows, and text automation

Installation | Operations | Credentials | Compatibility | Usage | Resources

Installation

Follow the installation guide in the n8n community nodes documentation.

Using npm

  1. Go to Settings > Community Nodes in n8n
  2. Click Install
  3. Enter n8n-nodes-cleantextlab
  4. Agree to the risks
  5. Click Install

After installation, restart your n8n instance to load the node.

Operations

The CleanTextLab node supports 35+ text processing operations across three categories:

Text Formatting

  • Trim Lines
  • Collapse Spaces
  • Upper/Lower/Title Case
  • Remove Line Breaks
  • Sort & Remove Duplicates
  • Remove Accents
  • Remove All Spaces
  • Rosetta Stone (Multi-Language Cleaner)

Data Processing

  • CSV to JSON Converter (supports custom delimiters , ; tab |)
  • JSON Formatter
  • YAML/JSON Converter
  • Base64 Encode/Decode (auto-detect or force direction)
  • Hash Generator (SHA-256/512/1, MD5, hex/base64 output)
  • Hex Converter (text/binary/number modes)

Developer Tools

  • UUID Generator (v4/v7)
  • Unix Timestamp Converter
  • Email Extractor
  • URL Sanitizer
  • Phone Number Formatter
  • Word Counter
  • Password Strength Checker
  • SQL Formatter
  • JWT Decoder
  • Regex Tester
  • And 15+ more...

Credentials

This node requires CleanTextLab API credentials.

Getting Your API Key

  1. Sign up for a CleanTextLab Pro account ($5/month launch pricing)
  2. Go to Settings → API Keys
  3. Generate a new API key
  4. Copy the key (starts with ctl_live_...)

Adding Credentials to n8n

  1. In n8n, go to Credentials in the left sidebar
  2. Click + Add Credential
  3. Search for "CleanTextLab API"
  4. Paste your API key
  5. Click Save

Compatibility

  • n8n version: 1.0.0 or later
  • Node version: 16.x or later

Usage

Basic Example: Trim and Uppercase Text

Input: "  hello world  "
Tool: Upper Case
Output: "HELLO WORLD"

Advanced Example: CSV with Semicolon Delimiter

Input:
name;age;city
Alice;30;Paris
Bob;25;London

Tool: CSV to JSON Converter
Config:
  - CSV Delimiter: Semicolon (;)
  - Has Headers: true

Output:
[
  {"name": "Alice", "age": "30", "city": "Paris"},
  {"name": "Bob", "age": "25", "city": "London"}
]

Advanced Example: SHA-512 Hash in Base64

Input: "my-secret-password"
Tool: Hash Generator
Config:
  - Hash Algorithm: SHA-512
  - Output Format: Base64

Output: "dvfV6XyNZM+DWczsaq/c3..."

Chaining Multiple Tools (via API)

While the n8n node processes one tool at a time, you can use multiple nodes in sequence or call the CleanTextLab API directly for multi-step workflows:

{
  "input": "  HELLO\n  WORLD  ",
  "steps": [
    "trim-lines",
    "lower-case",
    "collapse-spaces"
  ]
}

Result: "hello world"

Configuration Options

Tools with Configurable Parameters

CSV to JSON Converter

  • CSV Delimiter: , ; tab |
  • Has Headers: true | false

Hash Generator

  • Algorithm: SHA-256 | SHA-512 | SHA-1 | MD5
  • Output Format: hex | base64

Base64 Encode/Decode

  • Direction: auto | encode | decode

Hex Converter

  • Mode: text | binary | number
  • Direction: auto | encode | decode
  • Delimiter: none | space | colon

UUID Generator

  • Version: v4 (random) | v7 (timestamp-based)
  • Count: 1-100

Phone Number Formatter

  • Format: e164 | national | international

Sort & Remove Duplicates

  • Sort Direction: asc | desc

And more...

See the full configuration documentation for all options.

Resources

Support

Development

Building the Node

npm install
npm run build

Testing Locally

  1. Link the package:
npm link
  1. In your n8n installation:
cd ~/.n8n/custom
npm link n8n-nodes-cleantextlab
  1. Restart n8n

Publishing

npm run build
npm publish

License

MIT

Version History

0.1.0 (2025-12-26)

  • Initial release
  • 35+ text processing tools
  • Full configuration support for CSV, Hash, Base64, Hex, UUID, and more
  • Privacy-focused, deterministic processing

Made with ❤️ by the CleanTextLab team