Hello community,
I installed n8n globally using npm install -g n8n on my Windows machine.
Whenever I run n8n, the editor opens, but the title bar always shows:
Workflows - n8n [DEV]
From what I understand, [DEV] usually appears when running n8n from source in development mode.
But in my case, I am not running from source, only the global installation.
Still, [DEV] is always visible.
My questions are:
Why is [DEV] showing in the title even with the global installation?
How can I make sure it runs in full production mode without showing [DEV]?
Thanks in advance!
Bringasher:
âproduction modeâ
How to run as âproduction modeâ?
jabbson
September 11, 2025, 5:44pm
4
Please see these questions and the answers:
Describe the problem/error/question
Hi, i switched off docker running n8n as the npm -g package. Everything works fine execpt that the âwhite labelâ shows n8n is running in DEV mode + i dont get the popups of update available like when it was in docker.
is there ENV var to turn it ti âprodâ and get the updates available?
my systemd service has
Environment="NODE_ENV=production"
Environment="WEBHOOK_URL=url"
Environment="VUE_APP_URL_BASE_API=url"
Environment="GENERIC_TIMEZONE=Europe/Berlin"
EnvâŚ
Hello
I have 2 self-hosted n8n instances :
one through npm
one through docker (cloudron)
Recently, my npm instance shows the âdevâ logo, without me changing anything in my setup (just usual updates).
[image]
Both instances are up-to-date on the same version, but the npm one shows ân8n-devâ
[digi-studio 2024-12-08 at 20.22.36]
Does this mean anything ?
it appears both topics talk about changing a variable N8N_RELEASE_TYPE, which I found i a couple of places in the repository, for instance:
2 Likes
To remove the [DEV] label in n8n and run it in production mode:
Windows (PowerShell):
Open PowerShell.
Set the variable for the current session:
$env:N8N_RELEASE_TYPE = âstableâ
Or set it permanently:
setx N8N_RELEASE_TYPE âstableâ
Or set it manually:
Open Start menu â search âEnvironment Variablesâ
Click âEdit the system environment variablesâ
Click âEnvironment VariablesâŚâ
Under âUser variablesâ, click âNewâ
Name: N8N_RELEASE_TYPE
Value: stable â OK
Close and reopen PowerShell.
Run n8n:
n8n
Linux / macOS (bash or zsh):
Open your terminal.
Set the variable for the current session:
export N8N_RELEASE_TYPE=stable
Or set it permanently:
echo âexport N8N_RELEASE_TYPE=stableâ >> ~/.bashrc
or if you use zsh:
echo âexport N8N_RELEASE_TYPE=stableâ >> ~/.zshrc
Restart your terminal.
Run n8n:
n8n
After this, the [DEV] tag will disappear from the title bar.
2 Likes
system
Closed
September 19, 2025, 2:42am
6
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.