Kaffeeundcode
n8n Flow-Bibliothek
n8n Workflow 01.06.2026

Flow Arbeitsbereich

Daily Tech News Digest

Flow prüfen, Nodes verstehen, JSON importieren und Credentials sauber anpassen.

Workflow Diagramm

auto-generiert
graph LR
    N0(["⚡ 8AM Schedule"])
    N1["🔧 Hacker News RSS"]
    N2["🔧 Top 5 Format"]
    N3[["📤 Notify Telegram"]]
    N0 --> N1
    N1 --> N2
    N2 --> N3

    classDef trigger fill:#f59e0b,stroke:#b45309,color:#000
    classDef action fill:#292524,stroke:#44403c,color:#e7e5e4
    classDef logic fill:#1e1b4b,stroke:#4338ca,color:#c7d2fe
    class N0 trigger
    class N1 action
    class N2 action
    class N3 action

38_Daily_Tech_News_Digest.json

{
    "name": "38_Daily_Tech_News_Digest",
    "nodes": [
        {
            "parameters": {
                "rule": {
                    "interval": [
                        {
                            "field": "days",
                            "triggerAtHour": 8
                        }
                    ]
                }
            },
            "name": "8AM Schedule",
            "type": "n8n-nodes-base.schedule",
            "typeVersion": 1,
            "position": [
                250,
                300
            ]
        },
        {
            "parameters": {
                "url": "https://news.ycombinator.com/rss"
            },
            "name": "Hacker News RSS",
            "type": "n8n-nodes-base.rssFeedRead",
            "typeVersion": 1,
            "position": [
                450,
                300
            ]
        },
        {
            "parameters": {
                "functionCode": "const items = items.slice(0, 5);nconst msg = items.map((i, idx) => `${idx+1}. [${i.json.title}](${i.json.link})`).join('\n');nreturn [{ json: { msg } }];"
            },
            "name": "Top 5 Format",
            "type": "n8n-nodes-base.function",
            "typeVersion": 1,
            "position": [
                650,
                300
            ]
        },
        {
            "parameters": {
                "chatId": "YOUR_CHAT_ID",
                "text": "=📰 **Tech News Digest**nn{{ $json.msg }}",
                "additionalFields": {
                    "parse_mode": "Markdown"
                }
            },
            "name": "Notify Telegram",
            "type": "n8n-nodes-base.telegram",
            "typeVersion": 1,
            "position": [
                850,
                300
            ],
            "credentials": {
                "telegramApi": {
                    "id": "YOUR_TELEGRAM_ID",
                    "name": "Telegram Account"
                }
            }
        }
    ],
    "connections": {
        "8AM Schedule": {
            "main": [
                [
                    {
                        "node": "Hacker News RSS",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        },
        "Hacker News RSS": {
            "main": [
                [
                    {
                        "node": "Top 5 Format",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        },
        "Top 5 Format": {
            "main": [
                [
                    {
                        "node": "Notify Telegram",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        }
    }
}