Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <button id="add-counter">Add counter</button>
<button id="increment">Increment</button>
<div class="counters-container"></div>
              
            
!

CSS

              
                .counters-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.counter {
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.counter:nth-child(even) {
  background: lightgreen;
}

.counter:nth-child(odd) {
  background: lightpink;
}
              
            
!

JS

              
                class EventBus {
  // List of all subscribed components
  subscribers = new Set();
  
  // Add subscriber
  subscribe(subscriberCallback) {
    this.subscribers.add(subscriberCallback);
    subscriberCallback(reactiveData.counter);
  }
  
  // Remove subscriber
  unsubscribe(subscriberCallback) {
    this.subscribers.delete(subscriberCallback);
  }

  // Letting the subscribers know about new change
  publish() {
    this.subscribers.forEach(subscriberCallback => subscriberCallback(reactiveData.counter));
  }
}

const eventBus = new EventBus();

// Initial DOM update
eventBus.publish();

function renderCounterComponent() {
  // Rendering a counter component that shows the counter number and also a button to remove itself.
  const counter = document.createElement('div');
  counter.classList.add('counter');
  
  const counterText = document.createElement('span');
  counter.appendChild(counterText);
  function updateCounter(count) {
    // Updating the counter text.
    counterText.innerText = count;
  }
  
  const removeCounterBtn = document.createElement('button');
  removeCounterBtn.innerText = '❌';
  removeCounterBtn.addEventListener('click', () => {
    eventBus.unsubscribe(updateCounter);
    counter.remove();
  })
  counter.appendChild(removeCounterBtn);
  
  eventBus.subscribe(updateCounter);
  document.body.querySelector('.counters-container').appendChild(counter);
}

const addCounter = document.getElementById('add-counter');
addCounter.addEventListener('click', renderCounterComponent);

// Creating a simple object that holds a state. Will be used as the target object.
const data = {
  counter: 0
};

// Configure the handler object and how we are going to follow changes on state and update the DOM.
const handler = {
  get(target, property) {
    // Get the value of a specific property
    return target[property];
  },
  set(target, property, value) {
    // Set the value of a specific property
    target[property] = value;

    // Update the DOM
    eventBus.publish();
  }
};

// Creating the Proxy
const reactiveData = new Proxy(data, handler);

// Listen to click event to set the new counter value
const incrementButton = document.getElementById('increment');
if (incrementButton) {
  incrementButton.addEventListener('click', () => {
    reactiveData.counter++;
  });
}
              
            
!
999px

Console