Set an environment variable inline when running Node.js

📦 Node.js-> Command Line
✨ The Prompt Phrase
NODE_ENV=production node app.js

💻 Code Preview

📦 All-in-One Code
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Set an environment variable inline when running Node.js - Interactive Tutorial</title>
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&family=Fira+Code:wght@400;500;600&display=swap" rel="stylesheet">
    <style>
        :root {
            --bg-primary: #0a0e27;
            --bg-secondary: #151932;
            --bg-card: #1e2139;
            --accent-purple: #a855f7;
            --accent-blue: #3b82f6;
            --accent-green: #10b981;
            --accent-red: #ef4444;
            --accent-yellow: #f59e0b;
            --accent-pink: #ec4899;
            --accent-cyan: #06b6d4;
            --accent-lime: #84cc16;
            --accent-node: #68a063;
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
            --gradient-node: linear-gradient(135deg, #68a063 0%, #84cc16 100%);
            --gradient-prod: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
            --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--bg-secondary);
            z-index: 1000;
        }

        .progress-bar {
            height: 100%;
            background: var(--gradient-node);
            width: 0%;
            transition: width 0.3s ease;
        }

        .hero {
            text-align: center;
            padding: 100px 20px;
            background: var(--gradient-node);
            position: relative;
            overflow: hidden;
            border-radius: 0 0 50px 50px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
            animation: float 20s linear infinite;
        }

        @keyframes float {
            from { transform: translateY(0); }
            to { transform: translateY(-100px); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .env-icon {
            font-size: 5rem;
            margin-bottom: 20px;
            animation: envPulse 2s ease-in-out infinite;
        }

        @keyframes envPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .command-display {
            display: inline-block;
            background: rgba(0, 0, 0, 0.4);
            padding: 25px 40px;
            border-radius: 15px;
            font-family: 'Fira Code', monospace;
            font-size: 1.3rem;
            margin: 30px 0;
            border: 3px solid rgba(255, 255, 255, 0.3);
            animation: pulse 2s ease-in-out infinite;
            color: white;
            font-weight: 600;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.4rem;
            opacity: 0.95;
            color: white;
        }

        .section {
            margin: 60px 0;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            background: var(--gradient-node);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            font-weight: 700;
        }

        .card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 40px;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .code-block {
            background: #1e1e1e;
            border-radius: 15px;
            padding: 25px;
            margin: 20px 0;
            font-family: 'Fira Code', monospace;
            position: relative;
        }

        .code-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .terminal-dots {
            display: flex;
            gap: 6px;
        }

        .terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dot-red { background: #ff5f56; }
        .dot-yellow { background: #ffbd2e; }
        .dot-green { background: #27c93f; }

        .copy-btn {
            background: var(--accent-purple);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .copy-btn:hover {
            background: var(--accent-blue);
            transform: scale(1.05);
        }

        .copy-btn.copied {
            background: var(--accent-green);
        }

        pre {
            margin: 0;
            overflow-x: auto;
        }

        code {
            color: #e0e0e0;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .code-comment { color: #6a9955; }
        .code-string { color: #ce9178; }
        .code-keyword { color: #569cd6; }
        .code-property { color: #9cdcfe; }
        .code-env { color: #84cc16; font-weight: 600; }

        .steps {
            counter-reset: step-counter;
        }

        .step {
            background: var(--bg-secondary);
            border-radius: 15px;
            padding: 30px;
            margin: 20px 0;
            position: relative;
            padding-left: 100px;
            transition: all 0.3s ease;
        }

        .step:hover {
            background: var(--bg-card);
            transform: translateX(10px);
        }

        .step::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: var(--gradient-node);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
        }

        .step h3 {
            color: var(--accent-lime);
            margin-bottom: 10px;
            font-size: 1.5rem;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .feature-card {
            background: var(--bg-secondary);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            border-color: var(--accent-node);
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 15px;
        }

        .feature-title {
            font-weight: 600;
            color: var(--accent-lime);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .demo-container {
            background: var(--bg-secondary);
            border-radius: 20px;
            padding: 40px;
            margin: 30px 0;
        }

        .terminal {
            background: #1e1e1e;
            border-radius: 15px;
            padding: 20px;
            font-family: 'Fira Code', monospace;
            min-height: 300px;
            margin: 20px 0;
            overflow-y: auto;
            max-height: 500px;
        }

        .terminal-line {
            margin: 10px 0;
        }

        .terminal-prompt {
            color: var(--accent-green);
        }

        .env-badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin: 5px;
        }

        .env-dev {
            background: rgba(59, 130, 246, 0.2);
            color: var(--accent-blue);
            border: 1px solid var(--accent-blue);
        }

        .env-prod {
            background: rgba(239, 68, 68, 0.2);
            color: var(--accent-red);
            border: 1px solid var(--accent-red);
        }

        .env-test {
            background: rgba(245, 158, 11, 0.2);
            color: var(--accent-yellow);
            border: 1px solid var(--accent-yellow);
        }

        .demo-button {
            background: var(--gradient-node);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin: 10px;
        }

        .demo-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(104, 160, 99, 0.4);
        }

        .tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .tab {
            padding: 12px 24px;
            background: var(--bg-secondary);
            border: none;
            border-radius: 10px;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .tab:hover {
            background: var(--bg-card);
        }

        .tab.active {
            background: var(--gradient-node);
            color: white;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .accordion-header {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: var(--bg-secondary);
            border-radius: 12px;
            margin: 15px 0;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background: var(--bg-card);
        }

        .accordion-icon {
            transition: transform 0.3s ease;
            font-size: 1.2rem;
        }

        .accordion-icon.active {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-content.active {
            max-height: 2000px;
        }

        .accordion-body {
            padding: 20px;
            background: var(--bg-secondary);
            border-radius: 12px;
            margin-top: 5px;
        }

        .tip, .warning, .success, .info {
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }

        .tip {
            background: rgba(59, 130, 246, 0.1);
            border-left: 4px solid var(--accent-blue);
        }

        .tip::before { content: '💡 '; font-size: 1.5rem; }

        .warning {
            background: rgba(239, 68, 68, 0.1);
            border-left: 4px solid var(--accent-red);
        }

        .warning::before { content: '⚠️ '; font-size: 1.5rem; }

        .success {
            background: rgba(16, 185, 129, 0.1);
            border-left: 4px solid var(--accent-green);
        }

        .success::before { content: '✅ '; font-size: 1.5rem; }

        .info {
            background: rgba(236, 72, 153, 0.1);
            border-left: 4px solid var(--accent-pink);
        }

        .info::before { content: '🔍 '; font-size: 1.5rem; }

        .quiz-container {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 40px;
            margin: 30px 0;
        }

        .quiz-question {
            margin: 30px 0;
        }

        .quiz-question h3 {
            color: var(--accent-purple);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .quiz-options {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .quiz-option {
            background: var(--bg-secondary);
            padding: 20px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .quiz-option:hover {
            border-color: var(--accent-blue);
            transform: translateX(10px);
        }

        .quiz-option.correct {
            border-color: var(--accent-green);
            background: rgba(16, 185, 129, 0.1);
        }

        .quiz-option.incorrect {
            border-color: var(--accent-red);
            background: rgba(239, 68, 68, 0.1);
        }

        .quiz-feedback {
            margin-top: 15px;
            padding: 15px;
            border-radius: 10px;
            display: none;
        }

        .quiz-feedback.show {
            display: block;
        }

        .quiz-feedback.correct {
            background: rgba(16, 185, 129, 0.1);
            border-left: 4px solid var(--accent-green);
        }

        .quiz-feedback.incorrect {
            background: rgba(239, 68, 68, 0.1);
            border-left: 4px solid var(--accent-red);
        }

        .cheat-sheet {
            background: var(--gradient-node);
            border-radius: 20px;
            padding: 40px;
            margin: 30px 0;
            color: white;
        }

        .cheat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .cheat-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cheat-item h4 {
            color: white;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .cheat-item code {
            background: rgba(0, 0, 0, 0.3);
            padding: 4px 8px;
            border-radius: 5px;
            font-size: 0.9rem;
            color: white;
        }

        .highlight {
            color: var(--accent-yellow);
            font-weight: 600;
        }

        .footer {
            text-align: center;
            padding: 40px 20px;
            background: var(--bg-secondary);
            margin-top: 80px;
            border-radius: 20px;
        }

        .footer p {
            color: var(--text-secondary);
            margin: 10px 0;
        }

        .badge {
            display: inline-block;
            padding: 6px 12px;
            background: var(--gradient-node);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin: 5px;
        }

        .confetti {
            position: fixed;
            width: 10px;
            height: 10px;
            background: var(--accent-node);
            animation: confetti-fall 3s linear forwards;
            z-index: 9999;
        }

        @keyframes confetti-fall {
            to {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .comparison-table th {
            background: var(--bg-secondary);
            color: var(--accent-lime);
            font-weight: 600;
        }

        .comparison-table tr:hover {
            background: var(--bg-secondary);
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .command-display { font-size: 0.9rem; padding: 15px 20px; }
            .section-title { font-size: 1.8rem; }
            .card { padding: 25px; }
            .step { padding-left: 80px; }
            .step::before { width: 50px; height: 50px; font-size: 1.5rem; }
        }
    </style>
</head>
<body>
    <div class="progress-container">
        <div class="progress-bar" id="progressBar"></div>
    </div>

    <div class="hero">
        <div class="hero-content">
            <div class="env-icon">🌍</div>
            <h1>Master Environment Variables!</h1>
            <div class="command-display">NODE_ENV=production node app.js</div>
            <p>Set environment variables inline! 🚀</p>
        </div>
    </div>

    <div class="container">
        <!-- What Is It -->
        <section class="section">
            <h2 class="section-title">🤔 What Is This Command?</h2>
            <div class="card">
                <p style="font-size: 1.2rem; margin-bottom: 20px;">
                    This command sets an <span class="highlight">environment variable</span> called <code>NODE_ENV</code> to <strong>"production"</strong> and then runs your Node.js application! 🌍
                </p>
                <p style="margin-bottom: 20px;">
                    Think of environment variables like sticky notes you attach to your app before it starts! 📝 They tell your application how to behave - whether it's running in development mode (on your laptop) or production mode (on a live server)!
                </p>
                <div class="info">
                    <strong>Breaking It Down:</strong>
                    <ul style="margin-left: 30px; margin-top: 10px; line-height: 2;">
                        <li><code class="code-env">NODE_ENV=production</code> - Sets the environment variable</li>
                        <li><code>node</code> - The Node.js runtime</li>
                        <li><code>app.js</code> - Your application file</li>
                        <li>The variable is available as <code>process.env.NODE_ENV</code> in your code</li>
                    </ul>
                </div>
                <div style="margin-top: 30px;">
                    <h3 style="color: var(--accent-pink); margin-bottom: 15px;">Why inline? 🔍</h3>
                    <p>Setting it inline means it's <strong>temporary</strong> - only for this one command! It won't affect other terminal sessions or persist after the app stops.</p>
                </div>
                <div style="margin-top: 20px;">
                    <span class="env-badge env-dev">development</span>
                    <span class="env-badge env-prod">production</span>
                    <span class="env-badge env-test">test</span>
                </div>
            </div>
        </section>

        <!-- Why Use It -->
        <section class="section">
            <h2 class="section-title">✨ Why Use Environment Variables?</h2>
            <div class="card">
                <div class="feature-grid">
                    <div class="feature-card">
                        <div class="feature-icon">🔧</div>
                        <div class="feature-title">Different Behaviors</div>
                        <p style="color: var(--text-secondary);">Dev vs Production modes!</p>
                    </div>
                    <div class="feature-card">
                        <div class="feature-icon">🔒</div>
                        <div class="feature-title">Security</div>
                        <p style="color: var(--text-secondary);">Hide sensitive data!</p>
                    </div>
                    <div class="feature-card">
                        <div class="feature-icon">⚡</div>
                        <div class="feature-title">Performance</div>
                        <p style="color: var(--text-secondary);">Optimize for production!</p>
                    </div>
                    <div class="feature-card">
                        <div class="feature-icon">🎯</div>
                        <div class="feature-title">Configuration</div>
                        <p style="color: var(--text-secondary);">Easy environment setup!</p>
                    </div>
                    <div class="feature-card">
                        <div class="feature-icon">🔄</div>
                        <div class="feature-title">Flexibility</div>
                        <p style="color: var(--text-secondary);">Change without code edits!</p>
                    </div>
                    <div class="feature-card">
                        <div class="feature-icon">✅</div>
                        <div class="feature-title">Best Practice</div>
                        <p style="color: var(--text-secondary);">Industry standard!</p>
                    </div>
                </div>
            </div>
        </section>

        <!-- How It Works -->
        <section class="section">
            <h2 class="section-title">⚙️ How Does It Work?</h2>
            <div class="card">
                <div class="steps">
                    <div class="step">
                        <h3>Step 1: Shell Reads Command</h3>
                        <p>Your terminal (bash/zsh) parses the command line.</p>
                    </div>
                    <div class="step">
                        <h3>Step 2: Sets Environment Variable</h3>
                        <p>Creates NODE_ENV variable with value "production" for this process.</p>
                    </div>
                    <div class="step">
                        <h3>Step 3: Starts Node.js</h3>
                        <p>Launches the Node.js runtime with the environment variable.</p>
                    </div>
                    <div class="step">
                        <h3>Step 4: Loads Your App</h3>
                        <p>Node.js executes app.js with access to process.env.NODE_ENV.</p>
                    </div>
                    <div class="step">
                        <h3>Step 5: App Reads Variable</h3>
                        <p>Your code can check the value and behave accordingly.</p>
                    </div>
                    <div class="step">
                        <h3>Step 6: Variable Disappears</h3>
                        <p>When app stops, the variable is gone! 🎉</p>
                    </div>
                </div>
            </div>
        </section>

        <!-- Live Demo -->
        <section class="section">
            <h2 class="section-title">🎮 Interactive Demo</h2>
            <div class="demo-container">
                <h3 style="margin-bottom: 20px; font-size: 1.5rem;">See It In Action! 🚀</h3>
                <button class="demo-button" onclick="simulateProduction()">
                    <span>🔴</span>
                    <span>Run in Production</span>
                </button>
                <button class="demo-button" onclick="simulateDevelopment()">
                    <span>🔵</span>
                    <span>Run in Development</span>
                </button>
                <button class="demo-button" onclick="simulateMultipleVars()">
                    <span>🌈</span>
                    <span>Multiple Variables</span>
                </button>
                <div class="terminal" id="terminal">
                    <div class="terminal-line">
                        <span class="terminal-prompt">$</span>
                        <span style="color: var(--text-secondary);"> Ready to run your app...</span>
                    </div>
                </div>
            </div>
        </section>

        <!-- Code Breakdown -->
        <section class="section">
            <h2 class="section-title">💻 Command Variations</h2>
            <div class="card">
                <div class="tabs">
                    <button class="tab active" onclick="switchTab('basic')">Basic Usage</button>
                    <button class="tab" onclick="switchTab('multiple')">Multiple Variables</button>
                    <button class="tab" onclick="switchTab('windows')">Windows</button>
                    <button class="tab" onclick="switchTab('dotenv')">Using .env Files</button>
                </div>
                <div id="basic" class="tab-content active">
                    <h3 style="color: var(--accent-pink); margin-bottom: 15px;">Basic Environment Variable</h3>
                    <div class="code-block">
                        <div class="code-header">
                            <div class="terminal-dots">
                                <div class="terminal-dot dot-red"></div>
                                <div class="terminal-dot dot-yellow"></div>
                                <div class="terminal-dot dot-green"></div>
                            </div>
                            <button class="copy-btn" onclick="copyCode('basic-code')">📋 Copy</button>
                        </div>
                        <pre><code id="basic-code"><span class="code-comment"># Set NODE_ENV to production (Linux/Mac)</span>
NODE_ENV=production node app.js

<span class="code-comment"># Set to development</span>
NODE_ENV=development node app.js

<span class="code-comment"># Set to test</span>
NODE_ENV=test node app.js

<span class="code-comment"># Access in your code:</span>
console.log(process.env.NODE_ENV); <span class="code-comment">// "production"</span></code></pre>
                    </div>
                    <div class="success" style="margin-top: 15px;">
                        <strong>Result:</strong> Your app knows what environment it's running in!
                    </div>
                </div>
                <div id="multiple" class="tab-content">
                    <h3 style="color: var(--accent-pink); margin-bottom: 15px;">Multiple Environment Variables</h3>
                    <div class="code-block">
                        <div class="code-header">
                            <div class="terminal-dots">
                                <div class="terminal-dot dot-red"></div>
                                <div class="terminal-dot dot-yellow"></div>
                                <div class="terminal-dot dot-green"></div>
                            </div>
                            <button class="copy-btn" onclick="copyCode('multiple-code')">📋 Copy</button>
                        </div>
                        <pre><code id="multiple-code"><span class="code-comment"># Set multiple variables at once</span>
NODE_ENV=production PORT=3000 DEBUG=false node app.js

<span class="code-comment"># With database URL</span>
NODE_ENV=production DB_URL=mongodb://localhost:27017 node app.js

<span class="code-comment"># Access in code:</span>
const env = process.env.NODE_ENV;
const port = process.env.PORT;
const debug = process.env.DEBUG;</code></pre>
                    </div>
                    <div class="tip" style="margin-top: 15px;">
                        <strong>Pro Tip:</strong> Separate multiple variables with spaces!
                    </div>
                </div>
                <div id="windows" class="tab-content">
                    <h3 style="color: var(--accent-pink); margin-bottom: 15px;">Windows Command Prompt</h3>
                    <div class="code-block">
                        <div class="code-header">
                            <div class="terminal-dots">
                                <div class="terminal-dot dot-red"></div>
                                <div class="terminal-dot dot-yellow"></div>
                                <div class="terminal-dot dot-green"></div>
                            </div>
                            <button class="copy-btn" onclick="copyCode('windows-code')">📋 Copy</button>
                        </div>
                        <pre><code id="windows-code"><span class="code-comment"># Windows CMD (different syntax!)</span>
set NODE_ENV=production && node app.js

<span class="code-comment"># Windows PowerShell</span>
$env:NODE_ENV="production"; node app.js

<span class="code-comment"># Cross-platform solution (use cross-env package)</span>
npm install --save-dev cross-env
cross-env NODE_ENV=production node app.js</code></pre>
                    </div>
                    <div class="warning" style="margin-top: 15px;">
                        <strong>Important:</strong> Windows uses different syntax! Use <code>cross-env</code> for cross-platform compatibility.
                    </div>
                </div>
                <div id="dotenv" class="tab-content">
                    <h3 style="color: var(--accent-pink); margin-bottom: 15px;">Using .env Files</h3>
                    <div class="code-block">
                        <div class="code-header">
                            <div class="terminal-dots">
                                <div class="terminal-dot dot-red"></div>
                                <div class="terminal-dot dot-yellow"></div>
                                <div class="terminal-dot dot-green"></div>
                            </div>
                            <button class="copy-btn" onclick="copyCode('dotenv-code')">📋 Copy</button>
                        </div>
                        <pre><code id="dotenv-code"><span class="code-comment"># Install dotenv package</span>
npm install dotenv

<span class="code-comment"># Create .env file</span>
NODE_ENV=production
PORT=3000
DB_URL=mongodb://localhost:27017

<span class="code-comment"># In your app.js</span>
require('dotenv').config();
console.log(process.env.NODE_ENV); <span class="code-comment">// "production"</span>

<span class="code-comment"># Run normally</span>
node app.js</code></pre>
                    </div>
                    <div class="info" style="margin-top: 15px;">
                        <strong>Note:</strong> .env files are better for managing many variables! Don't commit them to git!
                    </div>
                </div>
            </div>
        </section>

        <!-- Common Mistakes -->
        <section class="section">
            <h2 class="section-title">❌ Common Mistakes</h2>
            <div class="card">
                <div class="accordion">
                    <div class="accordion-item">
                        <div class="accordion-header" onclick="toggleAccordion(this)">
                            <span><strong>1. Using Windows Syntax on Mac/Linux</strong></span>
                            <span class="accordion-icon">▼</span>
                        </div>
                        <div class="accordion-content">
                            <div class="accordion-body">
                                <div class="warning">
                                    <strong>Problem:</strong> <code>set NODE_ENV=production</code> doesn't work on Mac/Linux!
                                </div>
                                <div class="success" style="margin-top: 15px;">
                                    <strong>Solution:</strong> Use <code>NODE_ENV=production</code> (no "set") or install <code>cross-env</code>!
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="accordion-item">
                        <div class="accordion-header" onclick="toggleAccordion(this)">
                            <span><strong>2. Spaces Around the Equals Sign</strong></span>
                            <span class="accordion-icon">▼</span>
                        </div>
                        <div class="accordion-content">
                            <div class="accordion-body">
                                <div class="warning">
                                    <strong>Problem:</strong> <code>NODE_ENV = production</code> won't work!
                                </div>
                                <div class="success" style="margin-top: 15px;">
                                    <strong>Solution:</strong> No spaces! Use <code>NODE_ENV=production</code>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="accordion-item">
                        <div class="accordion-header" onclick="toggleAccordion(this)">
                            <span><strong>3. Forgetting to Check the Variable</strong></span>
                            <span class="accordion-icon">▼</span>
                        </div>
                        <div class="accordion-content">
                            <div class="accordion-body">
                                <div class="warning">
                                    <strong>Problem:</strong> Setting the variable but not using it in your code!
                                </div>
                                <div class="success" style="margin-top: 15px;">
                                    <strong>Solution:</strong> Always check: <code>if (process.env.NODE_ENV === 'production') { ... }</code>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </section>

        <!-- Comparison Table -->
        <section class="section">
            <h2 class="section-title">📊 Environment Comparison</h2>
            <div class="card">
                <table class="comparison-table">
                    <thead>
                        <tr>
                            <th>Environment</th>
                            <th>Purpose</th>
                            <th>Typical Settings</th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td><span class="env-badge env-dev">development</span></td>
                            <td>Local development</td>
                            <td>Debug on, verbose logs, hot reload</td>
                        </tr>
                        <tr>
                            <td><span class="env-badge env-prod">production</span></td>
                            <td>Live server</td>
                            <td>Optimized, minified, error tracking</td>
                        </tr>
                        <tr>
                            <td><span class="env-badge env-test">test</span></td>
                            <td>Running tests</td>
                            <td>Test database, mock services</td>
                        </tr>
                    </tbody>
                </table>
            </div>
        </section>

        <!-- Pro Tips -->
        <section class="section">
            <h2 class="section-title">🚀 Pro Tips</h2>
            <div class="card">
                <div class="tip">
                    <strong>Use cross-env for compatibility</strong> - Works on Windows, Mac, and Linux!
                </div>
                <div class="tip">
                    <strong>Create npm scripts</strong> - Add to package.json: <code>"start": "NODE_ENV=production node app.js"</code>
                </div>
                <div class="tip">
                    <strong>Use .env files</strong> - Better for managing multiple variables with dotenv package!
                </div>
                <div class="tip">
                    <strong>Never commit secrets</strong> - Add .env to .gitignore! Use .env.example instead.
                </div>
                <div class="tip">
                    <strong>Validate environment</strong> - Check if NODE_ENV is set: <code>process.env.NODE_ENV || 'development'</code>
                </div>
                <div class="tip">
                    <strong>Use strict equality</strong> - Always use <code>===</code> when checking: <code>NODE_ENV === 'production'</code>
                </div>
            </div>
        </section>

        <!-- Quiz -->
        <section class="section">
            <h2 class="section-title">🎯 Knowledge Check Quiz</h2>
            <div class="quiz-container">
                <p style="margin-bottom: 30px; font-size: 1.1rem;">Test your understanding! 🧠</p>
                <div class="quiz-question">
                    <h3>Question 1: How do you access NODE_ENV in your code?</h3>
                    <div class="quiz-options">
                        <div class="quiz-option" onclick="checkAnswer(this, false, 1)">A) NODE_ENV</div>
                        <div class="quiz-option" onclick="checkAnswer(this, true, 1)">B) process.env.NODE_ENV</div>
                        <div class="quiz-option" onclick="checkAnswer(this, false, 1)">C) env.NODE_ENV</div>
                    </div>
                    <div class="quiz-feedback" id="feedback1"></div>
                </div>
                <div class="quiz-question">
                    <h3>Question 2: What's the correct syntax for Mac/Linux?</h3>
                    <div class="quiz-options">
                        <div class="quiz-option" onclick="checkAnswer(this, false, 2)">A) set NODE_ENV=production node app.js</div>
                        <div class="quiz-option" onclick="checkAnswer(this, true, 2)">B) NODE_ENV=production node app.js</div>
                        <div class="quiz-option" onclick="checkAnswer(this, false, 2)">C) NODE_ENV = production node app.js</div>
                    </div>
                    <div class="quiz-feedback" id="feedback2"></div>
                </div>
                <div class="quiz-question">
                    <h3>Question 3: What package makes env variables cross-platform?</h3>
                    <div class="quiz-options">
                        <div class="quiz-option" onclick="checkAnswer(this, false, 3)">A) env-vars</div>
                        <div class="quiz-option" onclick="checkAnswer(this, true, 3)">B) cross-env</div>
                        <div class="quiz-option" onclick="checkAnswer(this, false, 3)">C) universal-env</div>
                    </div>
                    <div class="quiz-feedback" id="feedback3"></div>
                </div>
                <div id="quizScore" style="margin-top: 30px; padding: 20px; background: var(--bg-secondary); border-radius: 12px; display: none;">
                    <h3 style="color: var(--accent-green); font-size: 1.5rem;">🎉 Quiz Complete!</h3>
                    <p id="scoreText" style="font-size: 1.2rem; margin-top: 10px;"></p>
                </div>
            </div>
        </section>

        <!-- Summary Card -->
        <section class="section">
            <h2 class="section-title">📚 Quick Reference</h2>
            <div class="cheat-sheet">
                <h3 style="margin-bottom: 20px; font-size: 2rem;">Environment Variables Cheat Sheet! 🔖</h3>
                <div class="cheat-grid">
                    <div class="cheat-item">
                        <h4>🐧 Linux/Mac</h4>
                        <p><code>NODE_ENV=production node app.js</code></p>
                        <p style="font-size: 0.85rem; margin-top: 5px;">Standard syntax</p>
                    </div>
                    <div class="cheat-item">
                        <h4>🪟 Windows CMD</h4>
                        <p><code>set NODE_ENV=production && node app.js</code></p>
                        <p style="font-size: 0.85rem; margin-top: 5px;">Windows syntax</p>
                    </div>
                    <div class="cheat-item">
                        <h4>🌈 Cross-Platform</h4>
                        <p><code>cross-env NODE_ENV=production node app.js</code></p>
                        <p style="font-size: 0.85rem; margin-top: 5px;">Works everywhere</p>
                    </div>
                    <div class="cheat-item">
                        <h4>📦 Multiple Vars</h4>
                        <p><code>VAR1=val1 VAR2=val2 node app.js</code></p>
                        <p style="font-size: 0.85rem; margin-top: 5px;">Space separated</p>
                    </div>
                    <div class="cheat-item">
                        <h4>📄 Access in Code</h4>
                        <p><code>process.env.NODE_ENV</code></p>
                        <p style="font-size: 0.85rem; margin-top: 5px;">Read the value</p>
                    </div>
                    <div class="cheat-item">
                        <h4>🔧 npm Script</h4>
                        <p><code>"start": "NODE_ENV=prod node app.js"</code></p>
                        <p style="font-size: 0.85rem; margin-top: 5px;">In package.json</p>
                    </div>
                    <div class="cheat-item">
                        <h4>📝 .env File</h4>
                        <p><code>require('dotenv').config()</code></p>
                        <p style="font-size: 0.85rem; margin-top: 5px;">Load from file</p>
                    </div>
                    <div class="cheat-item">
                        <h4>✅ Common Values</h4>
                        <p>development, production, test</p>
                        <p style="font-size: 0.85rem; margin-top: 5px;">Standard names</p>
                    </div>
                </div>
            </div>
        </section>

        <!-- Footer -->
        <div class="footer">
            <h2 style="font-size: 2rem; margin-bottom: 20px; color: var(--accent-pink);">🎉 Congratulations!</h2>
            <p style="font-size: 1.2rem; margin-bottom: 20px;">You now understand <strong>environment variables</strong>! 🚀</p>
            <div style="margin: 30px 0;">
                <span class="badge">🌍 ENV Master</span>
                <span class="badge">⚙️ Config Pro</span>
                <span class="badge">🔧 Node.js Expert</span>
            </div>
            <p style="color: var(--text-secondary); margin-top: 30px;">Generated by <strong>AI Prompt Dictionary</strong> 🤖</p>
            <p style="color: var(--text-secondary); font-size: 0.9rem;">Made with ❤️ for developers learning Node.js</p>
        </div>
    </div>

    <script>
        // Progress bar
        window.addEventListener('scroll', () => {
            const winScroll = document.body.scrollTop || document.documentElement.scrollTop;
            const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;
            const scrolled = (winScroll / height) * 100;
            document.getElementById('progressBar').style.width = scrolled + '%';
        });

        // Copy to clipboard
        function copyCode(codeId) {
            const code = document.getElementById(codeId).innerText;
            navigator.clipboard.writeText(code).then(() => {
                event.target.textContent = '✅ Copied!';
                event.target.classList.add('copied');
                setTimeout(() => {
                    event.target.textContent = '📋 Copy';
                    event.target.classList.remove('copied');
                }, 2000);
            });
        }

        // Tab switching
        function switchTab(tabName) {
            document.querySelectorAll('.tab-content').forEach(c => c.classList.remove('active'));
            document.querySelectorAll('.tab').forEach(t => t.classList.remove('active'));
            document.getElementById(tabName).classList.add('active');
            event.target.classList.add('active');
        }

        // Accordion toggle
        function toggleAccordion(header) {
            const content = header.nextElementSibling;
            const icon = header.querySelector('.accordion-icon');
            content.classList.toggle('active');
            icon.classList.toggle('active');
        }

        // Simulate production
        function simulateProduction() {
            const terminal = document.getElementById('terminal');
            terminal.innerHTML = '<div class="terminal-line"><span class="terminal-prompt">$</span> NODE_ENV=production node app.js</div>';
            setTimeout(() => {
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--accent-lime); margin-top: 10px;">🚀 Starting app in PRODUCTION mode...</div>';
            }, 500);
            setTimeout(() => {
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--text-secondary); margin-top: 10px;">Environment: production</div>';
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--text-secondary);">Debug mode: OFF</div>';
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--text-secondary);">Logging: Minimal</div>';
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--text-secondary);">Optimizations: ENABLED</div>';
            }, 1500);
            setTimeout(() => {
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--accent-green); margin-top: 15px; font-weight: 600;">✅ Server running on port 3000</div>';
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--accent-red); margin-top: 5px;">🔴 PRODUCTION MODE - Handle with care!</div>';
                createConfetti();
            }, 2500);
        }

        // Simulate development
        function simulateDevelopment() {
            const terminal = document.getElementById('terminal');
            terminal.innerHTML = '<div class="terminal-line"><span class="terminal-prompt">$</span> NODE_ENV=development node app.js</div>';
            setTimeout(() => {
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--accent-blue); margin-top: 10px;">🔵 Starting app in DEVELOPMENT mode...</div>';
            }, 500);
            setTimeout(() => {
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--text-secondary); margin-top: 10px;">Environment: development</div>';
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--text-secondary);">Debug mode: ON</div>';
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--text-secondary);">Logging: Verbose</div>';
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--text-secondary);">Hot reload: ENABLED</div>';
            }, 1500);
            setTimeout(() => {
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--accent-green); margin-top: 15px; font-weight: 600;">✅ Server running on port 3000</div>';
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--accent-blue); margin-top: 5px;">💻 Development mode - Happy coding!</div>';
            }, 2500);
        }

        // Simulate multiple variables
        function simulateMultipleVars() {
            const terminal = document.getElementById('terminal');
            terminal.innerHTML = '<div class="terminal-line"><span class="terminal-prompt">$</span> NODE_ENV=production PORT=8080 DEBUG=false node app.js</div>';
            setTimeout(() => {
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--accent-cyan); margin-top: 10px;">🌈 Loading multiple environment variables...</div>';
            }, 500);
            setTimeout(() => {
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--accent-lime); margin-top: 10px;">✓ NODE_ENV = production</div>';
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--accent-lime);">✓ PORT = 8080</div>';
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--accent-lime);">✓ DEBUG = false</div>';
            }, 1500);
            setTimeout(() => {
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--accent-green); margin-top: 15px; font-weight: 600;">✅ Server running on port 8080</div>';
                terminal.innerHTML += '<div class="terminal-line" style="color: var(--accent-cyan); margin-top: 5px;">🎯 All environment variables loaded successfully!</div>';
                createConfetti();
            }, 2500);
        }

        // Quiz system
        let quizScore = 0;
        let questionsAnswered = 0;

        function checkAnswer(element, isCorrect, questionNum) {
            const options = element.parentElement.querySelectorAll('.quiz-option');
            options.forEach(opt => opt.style.pointerEvents = 'none');
            const feedback = document.getElementById('feedback' + questionNum);
            if (isCorrect) {
                element.classList.add('correct');
                feedback.className = 'quiz-feedback correct show';
                feedback.innerHTML = '<strong>🎉 Correct!</strong> Great job!';
                quizScore++;
                createConfetti();
            } else {
                element.classList.add('incorrect');
                feedback.className = 'quiz-feedback incorrect show';
                feedback.innerHTML = '<strong>❌ Not quite!</strong> Review the material and try again!';
            }
            questionsAnswered++;
            if (questionsAnswered === 3) {
                setTimeout(() => {
                    document.getElementById('quizScore').style.display = 'block';
                    document.getElementById('scoreText').textContent = `You scored ${quizScore}/3! ${quizScore === 3 ? '🏆 Perfect!' : quizScore === 2 ? '👍 Good job!' : '💪 Keep learning!'}`;
                }, 1000);
            }
        }

        // Confetti animation
        function createConfetti() {
            const colors = ['#68a063', '#84cc16', '#10b981', '#3b82f6', '#f59e0b'];
            for (let i = 0; i < 50; i++) {
                const confetti = document.createElement('div');
                confetti.className = 'confetti';
                confetti.style.left = Math.random() * window.innerWidth + 'px';
                confetti.style.background = colors[Math.floor(Math.random() * colors.length)];
                confetti.style.animationDuration = (2 + Math.random() * 2) + 's';
                document.body.appendChild(confetti);
                setTimeout(() => confetti.remove(), 4000);
            }
        }
    </script>
</body>
</html>
Live Preview