npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

stitch-dom

v1.0.0

Published

A small JS Library for handling DOM Updates

Downloads

1

Readme

stitch

Small JS Library for handling DOM Updates.

Usage

Include all files from dist/js/ in your build. The entry point is stitch.min.js.

Extending a Component

In order to use stitch bindings in your DOM, you first need to set up a class which extends a Stitch component. In it's constructor it needs to take a HTML Element or css selector, your data in a JS Object, and any options. (Currently there are no supported options).

const counterEl = document.querySelector('.counter');

const data = {
    count: 0
};

class Counter extends Stitch.Component {
    constructor(element,data,options) {
        super(element,data,options);
    }
}

const counter = new Counter(counterEl,data,{});

Next, we want to add some data manipulation, so we create some new methods in our class:

    constructor() {...}

    decrement() {
        this.data.count--;
    }

    increment() {
        this.data.count++;
    }

All set. Now we need some HTML template to work with.

Template Syntax

First, we need our element we passed into the Component class:

    <div class='counter'>
    </div>

Next, we need somewhere to put our data. Place an element whose content contains a curly brace pair with a data reference inside:

    <div class='counter'>
        <p>{this.data.count}</p>
    <div>

We may also want some conditional rendering, where elements show/hide based on the data:

s-for Contains an expression that returns a count. The element will show that many times. Use index inside a data binding to access data based on the index of the element.

s-if Will show the element if it's condition is met.

    <div class='counter'>
        <p>{this.data.count}</p>
        <p s-if='this.data.count > 10'>Woah, slow down!</p>
        <p s-if='this.data.count < -10'>Going down...</p>
        <ul>
            <li s-for='this.data.count'>😊</li>
            <li s-for='-this.data.count'>😨</li>
        </ul>
    </div>

Finally, we need to add some way to manipulate the data using s-event.

s-event Let's us listen for events on this element. s-event-* is the event type to listen for, and our class method to run on the event fire.

    <div class='counter'>
        <button s-event s-event-click='increment'>+</button>
        <p>{this.data.count}</p>
        <button s-event s-event-click='decrement'>-</button>
        <p s-if='this.data.count > 10'>Woah, slow down!</p>
        <p s-if='this.data.count < -10'>Going down...</p>
        <ul>
            <li s-for='this.data.count'>😊</li>
            <li s-for='-this.data.count'>😨</li>
        </ul>
    </div>

See the demo folder for the full demo, as well as a todo component demo.