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 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-ido-toolbox

v0.4.1

Published

A comprehensive collection of useful tools for data processing, text manipulation, date operations, and daily tasks

Readme

Ido Toolbox - Comprehensive n8n Community Node

A community node for n8n containing a wide variety of useful tools for data management, text processing, date operations, and daily tasks.

✨ Key Features

  • Random Tools: Generate random strings, numbers, and passwords
  • Text Processing: Multiple search and replace operations
  • HTML Generation: Convert data to HTML tables
  • Email Fixing: Correct typos in email domains
  • Random Replies: Select random responses from a list
  • AI Agent Support: All tools are usable with AI agents

🆕 חדש בגרסה 0.4.0

  • Complete text translation - All Hebrew text replaced with English
  • Enhanced random number tool - Added option to choose between integers and decimals
  • Improved timezone converter - Dropdown with predefined timezone options
  • Extended email domain corrections - Added dozens more domain correction examples
  • Removed QR Code tool - Removed due to implementation issues

🆕 חדש בגרסה 0.3.0

  • כלי UTM - חילוץ פרמטרי UTM מכתובות URL
  • פיצול טקסט - חלוקת טקסט לנתחים עם חפיפה
  • המרת אזורי זמן - המרת תאריכים בין אזורי זמן שונים
  • כלי תאריכים - יצירת תאריכים אקראיים וחישוב הבדלים
  • כלי עברית - קידוד/פענוח מחרוזות עברית ואימות תעודות זהות

🔧 Available Tools

1. Random Tools

Generate Random String

Creates a random string of specified length with customizable options.

פרמטרים:

  • Length: אורך המחרוזת (ברירת מחדל: 8)
  • Include Numbers: האם לכלול מספרים
  • Include Uppercase: האם לכלול אותיות גדולות
  • Include Lowercase: האם לכלול אותיות קטנות

פלט:

{
  "randomString": "Ab3Xy9Kl",
  "length": 8
}

Generate Random Number (יצירת מספר אקראי)

יוצר מספר אקראי בטווח מוגדר.

פרמטרים:

  • Minimum Value: ערך מינימלי (ברירת מחדל: 0)
  • Maximum Value: ערך מקסימלי (ברירת מחדל: 100)

פלט:

{
  "randomNumber": 42,
  "min": 0,
  "max": 100,
  "range": 101
}

Password Generator (מחולל סיסמאות)

יוצר סיסמאות חזקות עם אפשרות להתאמה אישית.

פרמטרים:

  • Length: אורך הסיסמה (ברירת מחדל: 12)
  • Include Numbers: האם לכלול מספרים
  • Include Symbols: האם לכלול סימנים מיוחדים

פלט:

{
  "password": "Tr9@pL2#mN8&k",
  "length": 12,
  "strength": "Strong"
}

2. עיבוד טקסט

Multiple Search and Replace (חיפוש והחלפה מרובים)

מבצע חיפוש והחלפה מרובים בטקסט.

פרמטרים:

  • Input Text: הטקסט שעליו לבצע חיפוש והחלפה
  • Replacements: רשימת החלפות לביצוע
    • Search For: הטקסט לחיפוש
    • Replace With: הטקסט להחלפה
  • Case Sensitive: האם החיפוש תלוי רישיות

פלט:

{
  "inputText": "Hello world!",
  "outputText": "Hi universe!",
  "changesMade": true,
  "replacementsApplied": [
    {
      "search": "Hello",
      "replace": "Hi",
      "replacementsMade": 1
    },
    {
      "search": "world",
      "replace": "universe",
      "replacementsMade": 1
    }
  ],
  "totalReplacements": 2
}

3. יצירת HTML

Create HTML From Table (יצירת HTML מטבלה)

יוצר טבלת HTML בסיסית מנתונים.

פרמטרים:

  • Input Data: נתוני הקלט (JSON או CSV)
  • Data Format: פורמט הנתונים (JSON/CSV)
  • Include Headers: האם לכלול כותרות

פלט:

{
  "htmlTable": "<table border=\"1\" style=\"border-collapse: collapse;\">...",
  "rowCount": 3,
  "columnCount": 2,
  "headers": ["Name", "Age"]
}

Create HTML From Table - Advanced (יצירת HTML מטבלה - מתקדם)

יוצר טבלת HTML מתקדמת עם עיצוב ותכונות נוספות.

פרמטרים:

  • Input Data: נתוני הקלט (JSON או CSV)
  • Data Format: פורמט הנתונים (JSON/CSV)
  • Table Class: מחלקת CSS לטבלה
  • Include Headers: האם לכלול כותרות
  • Table Title: כותרת לטבלה (אופציונלי)

פלט:

{
  "htmlTable": "<h3>My Data</h3><table class=\"table table-striped\">...",
  "rowCount": 3,
  "columnCount": 2,
  "headers": ["Name", "Age"],
  "tableClass": "table table-striped",
  "hasTitle": true
}

4. תיקון נתונים

Fix Email Address Domain (תיקון דומיין כתובת אימייל)

מתקן שגיאות הקלדה נפוצות בדומיינים של אימייל.

תיקונים נתמכים:

  • gmial.comgmail.com
  • hotmal.comhotmail.com
  • yahho.comyahoo.com
  • ועוד...

פרמטרים:

  • Email Address: כתובת האימייל לתיקון

פלט:

{
  "originalEmail": "[email protected]",
  "correctedEmail": "[email protected]",
  "domainCorrected": true,
  "originalDomain": "gmial.com",
  "correctedDomain": "gmail.com"
}

5. תגובות אקראיות

Return a Random Reply (החזרת תגובה אקראית)

מחזיר תגובה אקראית מתוך רשימה מוגדרת.

פרמטרים:

  • Replies: רשימת תגובות מופרדות בפסיקים

פלט:

{
  "randomReply": "כן",
  "totalReplies": 4,
  "selectedIndex": 0,
  "allReplies": ["כן", "לא", "אולי", "שאל שוב מאוחר יותר"]
}

🚀 התקנה

  1. התקן את n8n
  2. התקן את הנוד:
    npm install n8n-nodes-ido-toolbox
  3. הפעל מחדש את n8n
  4. הנוד "Ido Toolbox" יהיה זמין בפאנל הנודים

📝 דוגמאות שימוש

יצירת סיסמה אקראית

// הפעל את הנוד עם:
// Operation: Password Generator
// Length: 16
// Include Numbers: true
// Include Symbols: true

תיקון אימיילים ברשימת תפוצה

// הפעל את הנוד עם:
// Operation: Fix Email Address Domain
// Email Address: [email protected]

יצירת טבלת HTML מנתונים

// הפעל את הנוד עם:
// Operation: Create HTML From Table - Advanced
// Input Data: [{"name":"John","age":30},{"name":"Jane","age":25}]
// Data Format: JSON
// Table Title: User List

🤖 תמיכה באייג'נט

כל הכלים בנוד זה מוגדרים ככלי אייג'נט (usableAsTool: true), מה שאומר שהם זמינים לשימוש עם AI agents ב-n8n.

🐛 דיווח על באגים

אם נתקלת בבאג או יש לך הצעה לשיפור, אנא פתח issue ב-GitHub.

📄 רישיון

פרויקט זה מופץ תחת רישיון MIT.

👥 תרומה

תרומות מתקבלות בברכה! אנא קרא את קובץ התרומה לפני שליחת Pull Request.


6. כלי XML ו-JSON

Convert XML to JSON Object (המרת XML לאובייקט JSON)

ממיר מחרוזת XML לאובייקט JSON בצורה היררכית.

פרמטרים:

  • XML String: מחרוזת XML להמרה

פלט:

{
  "xmlString": "<user><name>John</name><age>30</age></user>",
  "jsonResult": {
    "user": {
      "name": {"_value": "John"},
      "age": {"_value": "30"}
    }
  },
  "conversionSuccessful": true
}

7. יצירת QR Code

Generate QR Code (יצירת קוד QR)

יוצר קוד QR מכתובת URL או טקסט (יישום בסיסי).

פרמטרים:

  • Content: התוכן להמרה לקוד QR
  • Size: גודל קוד ה-QR בפיקסלים
  • Format: פורמט הפלט (Base64/Data URL)

פלט:

{
  "content": "https://example.com",
  "size": 256,
  "format": "base64",
  "qrCode": "base64_encoded_qr_placeholder",
  "note": "This is a placeholder. Use qrcode library for real QR generation."
}

8. ניתוח HTML

HTML Parser (מנתח HTML)

מנתח מחרוזת HTML לחילוץ מידע שונה.

פרמטרים:

  • HTML String: מחרוזת HTML לניתוח
  • Parse Type: סוג המידע לחילוץ (טקסט/קישורים/תמונות/כותרות)

פלט:

{
  "htmlString": "<html>...</html>",
  "parseType": "links",
  "parsedData": {
    "links": [
      {"url": "https://example.com", "text": "Example"}
    ],
    "linkCount": 1
  },
  "parsingSuccessful": true
}

9. חילוץ תווים מספריים

Get Numeric Characters (קבלת תווים מספריים)

מחלץ תווים מספריים ממחרוזת.

פרמטרים:

  • Input String: המחרוזת שממנה לחלץ תווים מספריים
  • Extract as Numbers: האם להחזיר כמספרים או כמחרוזות

פלט:

{
  "inputString": "Price: 123.45 USD",
  "numericString": "12345",
  "numbers": [1, 2, 3, 4, 5],
  "count": 5
}

פותח על ידי: Ovadiah Ben-David גרסה: 0.4.0 תאימות: n8n 1.0+