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-audome

v2.4.6

Published

Audome Node for n8n - Generate images with Audome API. Connect to Audome.io and create images from templates automatically.

Readme

Audome Node for n8n

English | العربية


Overview

Audome Node is a powerful n8n community node that allows you to generate dynamic images from templates using the Audome API. Automate your image creation workflow with support for Arabic text, custom fonts, and dynamic data injection.

Features

  • 🎨 List Projects - Get all your Audome projects
  • 🖼️ Generate Images - Create images from templates dynamically
  • 🔐 Secure Authentication - Token-based API authentication
  • 🌍 Full Arabic Support - Native RTL and Arabic font handling
  • Fast & Reliable - Powered by Supabase

Installation

In n8n

  1. Go to SettingsCommunity Nodes
  2. Install: @audome/n8n-nodes-audome
  3. Refresh your browser
  4. Start using the Audome node!

Manual Installation

npm install @audome/n8n-nodes-audome

Then restart n8n:

docker restart n8n
# or
pm2 restart n8n

Configuration

1. Add Credentials

Go to CredentialsAdd CredentialAudome API

Enter your API Token from https://audome.io/api-tokens

2. Create Workflow

Trigger → Audome Node → Save/Send

How to Use

Step 1: Get Project Layers

  1. Add Audome Node
  2. Operation: Get Projects
  3. Execute to see all projects with their layers

This returns each project with:

  • layers array (showing required field names)
  • curl_example (ready-to-use curl command)

Step 2: Generate Image

  1. Operation: Generate Image
  2. Project: Select your project from the dropdown
  3. Data: Enter JSON object using layer names from Step 1

Example: If layers are ["title", "bg"]:

{
  "title": "Welcome",
  "bg": "https://example.com/bg.jpg"
}

Operation: Get Projects

Use this operation to fetch all your projects with their layers information.

Configuration:

  • Operation: Get Projects

Output:

{
  "success": true,
  "projects": [
    {
      "id": "0798748e-2238-49a8-83eb-7d7a57f384d0",
      "name": "My Project",
      "layers": [
        {
          "name": "title",
          "type": "text",
          "required": true,
          "current_value": "Hello"
        },
        {
          "name": "bg",
          "type": "image",
          "required": true,
          "current_value": "https://example.com/bg.jpg"
        }
      ],
      "curl_example": "curl -X POST \"https://api.render.audome.io/api/generate/...\"..."
    }
  ],
  "count": 1
}

Operation: Generate Image

Configuration:

  • Operation: Generate Image
  • Project: Select from the list
  • Data: JSON object with layer values

Example Data:

{
  "title": "Welcome",
  "bg": "https://example.com/background.jpg"
}

Output:

{
  "success": true,
  "image_url": "https://api.render.audome.io/images/20240115_120000_abc123.png",
  "generation_id": "uuid-here",
  "credits_remaining": 453,
  "metadata": {
    "width": 800,
    "height": 600,
    "generationTime": 1234
  }
}

API Endpoints

  • Projects: GET https://api.render.audome.io/api/projects
  • Generate: POST https://api.render.audome.io/api/generate/{project_id}

Credits

Each image generation costs 1 credit. Check your remaining credits in the API response.

Support

  • 🌐 Website: https://audome.io
  • 📧 Email: [email protected]
  • 📚 API Docs: https://audome.io/api-tokens

License

MIT


العربية

نظرة عامة

Audome Node هو node قوي لمجتمع n8n يتيح لك توليد صور ديناميكية من قوالب باستخدام Audome API. أتمتة إنشاء الصور مع دعم النص العربي والخطوط المخصصة وحقن البيانات الديناميكية.

المميزات

  • 🎨 قائمة المشاريع - احصل على جميع مشاريع Audome الخاصة بك
  • 🖼️ توليد الصور - إنشاء صور من قوالب ديناميكياً
  • 🔐 مصادقة آمنة - مصادقة API تعتمد على التوكن
  • 🌍 دعم كامل للعربية - معالجة RTL والخطوط العربية الأصلية
  • سريع وموثوق - مدعوم بـ Supabase

التثبيت

في n8n

  1. اذهب إلى الإعداداتCommunity Nodes
  2. تثبيت: @audome/n8n-nodes-audome
  3. حدّث المتصفح
  4. ابدأ استخدام Audome node!

التثبيت اليدوي

npm install @audome/n8n-nodes-audome

ثم أعد تشغيل n8n:

docker restart n8n
# أو
pm2 restart n8n

التكوين

1. إضافة Credentials

اذهب إلى Credentialsإضافة CredentialAudome API

أدخل API Token الخاص بك من https://audome.io/api-tokens

2. إنشاء Workflow

Trigger → Audome Node → Save/Send

الاستخدام

قائمة المشاريع

العملية: قائمة المشاريع

الإخراج:

{
  "success": true,
  "projects": [
    {
      "id": "0798748e-2238-49a8-83eb-7d7a57f384d0",
      "name": "مشروعي"
    }
  ],
  "count": 1
}

توليد صورة

العملية: توليد صورة

المعاملات:

  • Project ID: اختر من مشاريعك
  • Data: كائن JSON بقيم القالب

مثال البيانات:

{
  "title": "مرحباً",
  "subtitle": "هذا مولد من n8n",
  "bg": "https://example.com/background.jpg"
}

الإخراج:

{
  "success": true,
  "image_url": "https://api.render.audome.io/images/20240115_120000_abc123.png",
  "generation_id": "uuid-here",
  "credits_remaining": 453,
  "metadata": {
    "width": 800,
    "height": 600,
    "generationTime": 1234
  }
}

نقاط نهاية API

  • المشاريع: GET https://api.render.audome.io/api/projects
  • التوليد: POST https://api.render.audome.io/api/generate/{project_id}

الكريدت

كل عملية توليد تكلف 1 كريدت. تحقق من الكريدت المتبقي في استجابة API.

الدعم

  • 🌐 الموقع: https://audome.io
  • 📧 البريد: [email protected]
  • 📚 توثيق API: https://audome.io/api-tokens

الترخيص

MIT