What people previously said about n8n

Older than the 25 on n8n’s page
“None of this is complicated once you know it. It's just that almost every n8n whatsapp tutorial stops at "it works in test mode," and everything above is what sits between that and something you'd actually put in front of a client.”
Ahmiii_83 · reddit ·
“The number of options inside n8n is almost limitless. With @bot creating the workflows, managing the webhooks, and Pushover notifications to me, it feels like an instant”
ChuckCook · x ·
“My brain crashed when I read n8n and fax in the same sentence”
No-Investigator7598 · reddit ·
“this is the single best cost optimization tip in n8n and almost nobody does it. the pattern is: use a cheap fast model like haiku or gpt-4o-mini for extraction, classification, and data transformation steps, then reserve the expensive model for the final synthesis or decision step.”
manujam · reddit ·
“I can use a curl command and get a response when I get collections from the local instance, but for the life of me I cannot connect through the Qdrant Vector Store node.”
Puzzleheaded-Bus6626 · reddit ·
“Setup is the Apify node, which n8n has verified, so it installs on Cloud and not only self-hosted.”
Key_Recognition_8112 · reddit ·
“I think optimizing n8n workflows with multiple AI steps requires assigning different models based on task complexity rather than using a single model throughout.”
Top-Cauliflower-1808 · reddit ·
“the n8n side can get a little messy if you're trying to build your own webhook layer on top of a tool that wasn't really designed for it tbh. it kinda depends on how much you want to maintain yourself vs just having it work out of the box”
Dear-Willow-856 · reddit ·
“The connectors are probably the biggest reason I’d use something like n8n. Even if you can code the workflow itself, not having to build and maintain every integration can save a lot of time.”
Substantial-Half2532 · reddit ·
“Set up a Gmail/Outlook trigger node in n8n on that inbox, filter by sender/subject, then parse the lead info out of the email body (a regex or a small AI node works well here). From there you route it into your CRM/sheet/whatever like any other lead.”
n8n_automations · reddit ·
“In n8n you just take the OpenAI Chat Model node and change the base URL to point at Zai, pick the model, done. Small, runs fast and the context window is the thing there, it was eating a lot per run and it did not fall over on the big job.”
popoy60 · reddit ·
“once you're doing entity resolution or deduplication against more than roughly 10k records, n8n's in-memory handling becomes a real liability fast. we hit this at around 80k company records where a Function node was timing out and the DB node couldn't handle the join logic we needed.”
Ok-Category2729 · reddit ·
“I considered using Obsidian, but n8n doesn't have a direct integration with it.”
Luckez0 · reddit ·
“The cheap hack that a surprising number of agencies actually run on: LSA sends lead notification emails. Gmail Trigger in n8n, parse name, phone and service out of the body. Fragile if Google changes the template, but it works today and takes twenty minutes.”
vladeta · reddit ·
“Polling + Gmail trigger: LSA leads arrive as emails → n8n Gmail node (OAuth) polls every 5 min → parse → route to CRM/Sheets/Slack. Simple, reliable, no infra.”
Creepy-Ad8844 · reddit ·
“That could replace parts of the Supabase-backed application layer, the custom dashboard, and some of the n8n glue. It still wouldn’t replace streaming ingestion, bulk sanctions matching, or replay infrastructure, though.”
garyguangyuli · reddit ·
“Have anyone done Google LSA integration with n8n. It seems google cant send the lead info to a webhook directly.”
suspect_stable · reddit ·
“​Standard n8n workflows work great for moving a row from Typeform to Google Sheets, but they break down when processing gigabytes of raw data or handling complex, multi-source state machines.”
Adventurous_Chip3199 · reddit ·
“Do you immediately start working in n8n, or do you first map out all the processes that the pain points occur in? Or do u do some kind of other documentation/project management”
emergencyelbowbanana · reddit ·
“I have added several n8n workflows to my old dental chatbot.”
OldFun4876 · reddit ·
“We’ve done flows with Bland where a call can gather information, work through a few different directions and take an action before it’s finished, so tying that back into everything you already have in n8n could get pretty deep. Nice build man!”
Dry_Extent1285 · reddit ·
“Have done many n8n automations, but I have shifted to building small apps instead. Bara padtay asa vatay mala.”
4xcrew_captain · reddit ·
“I spent weeks turning all of that into one n8n workflow.”
_no__regrets_ · reddit ·
“First, the path has to exist inside the container, not on your host. n8n can only see what you mounted into it. In compose:”
Impossible_Fault_503 · reddit ·
“n8n service?”
GoldLaugh8750 · reddit ·
“Talked to someone in the n8n space recently who does this by default now: after any write node (Sheets, Postgres, Airtable), he adds a read-back check before marking the workflow as done.”
Gallegos_Daniel · reddit ·
“This isnt a bug, it docker design, as n8n is running inside a docker container, and a container has its own isolated filesystem, it CANT see the files on your pc.”
burstinrust · reddit ·
“I take it the file is in your host filesystem and n8n is looking in the Docker container. Therefore you need to map a volume from your host into the container.”
Mr_Albal · reddit ·
“I am using a Read from disk node to feed data (through a data sheet .xlsx also tried .pdf before) but I keep getting No file found even when I put exact path..”
Jolly_Teach_5165 · reddit ·
“n8n's Google credential only stores one impersonated user. For a variable mailbox use an HTTP Request node and set the JWT sub to the address you need that run. You dont need a whole Python runner.”
slunkeh · reddit ·
“Phantombuster works but heads up on acceptance tracking specifically - it doesn't push a webhook when someone accepts, you have to poll for it on a schedule (n8n Wait node + a periodic check against your prospect list's connection status works, but plan for rate limits on the polling side once your list grows.”
Left_Dog1867 · reddit ·
“You're basically stuck doing the OAuth dance outside n8n if the user changes on the fly, that node wants one name hardcoded and it won't budge.”
ElectricalActive6415 · reddit ·
“Am I correct to interpret the service account authentication settings in n8n to mean that I have to nominate the impersonated user in the authentication settings? Does this mean my only solution would be to add the required modules to a Python runner and code the OAuth, JWT, and email API calls from scratch?”
mpember · reddit ·
“Now if you want to combine these for a more complex automation you would still need n8n!”
Worried_Laugh_6581 · reddit ·
“I think the main advantage of n8n is that it gives you a clear, repeatable workflow that’s easier to monitor and maintain in production. AI coding tools can build the logic, but n8n makes integrations, triggers, retries, credentials, and execution history much easier to manage.”
danish_137 · reddit ·
“¿Cómo puedo implementar un nodo de verificación para una planilla de base de datos para que me avise, cuando n8n notifique en verde en flujo pero no haga la operación?”
JuanStohwing · reddit ·
“where the visual tools genuinely add value is observability and scheduling infrastructure you'd otherwise have to build, error logging, retry logic, run history. that stuff is tedious to wire up from scratch and n8n gives it to you.”
SeriousHat4465 · reddit ·
“On a 2GB VPS it also fights n8n for RAM. Measure before you add the worker.”
AjitSpliceRun · reddit ·
“Phantombuster does all that through their API and the webhook support is decent enough for n8n flows”
rightlenard_704 · reddit ·
“Looking for a Unipile alternative for LinkedIn automation with n8n”
Kajol_Gen_AI · reddit ·
“I’d still rather write the actual logic in code, but for workflows like that I like having n8n as the thing holding everything together.”
Olympia_Essick · reddit ·
“n8n just made self-hosted AI automation dramatically easier. What used to take an afternoon can now start with one command.”
JulianGoldieSEO · x ·
“Most of what breaks in n8n at production volume never raises an error. You find out later, when a number downstream is wrong.”
tray · x ·
“I've been experimenting with a simple allow/deny layer around tool execution, but I'm curious whether people are already handling this inside n8n or just relying on the workflow itself.”
Glittering-Coat-657 · reddit ·
“Return two fields, internal_state and customer_message, then let a plain n8n node send only customer_message. Block phrases like 'the customer said' or 'I will move to step' before delivery.”
deelight_0909 · reddit ·
“Question sb why n8n rather tha writing scripts.”
ElTeclero · reddit ·
“The N8N node catalog is already very extensive and covers a ton of needs, plus many hundreds of community add-ons.”
medialantern · reddit ·
“I would debug the Meta API call outside n8n first. If the exact request fails in Graph API Explorer or curl, changing the n8n workflow will not fix it. Once the API request works directly, move the same token/request back into n8n.”
Top-Explanation-4750 · reddit ·
“With n8n, the workflow itself is deterministic. I'd only use an LLM for the part that actually needs it, like summarizing lead notes. Everything else can just be normal automation, which is faster, cheaper, and easier to debug.”
Maleficent-Lychee849 · reddit ·
“Uso N8n + evolution api + Chatwoot + minio + portainer + cloudflare tunnel.”
KillSPBR · reddit ·