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 🙏

© 2025 – Pkg Stats / Ryan Hefner

light-bind

v0.7.0

Published

A minimalistic data binding library for JavaScript

Readme

LightBind

A minimalist JS framework to bind html and js and provide UI basic like drag&drop or dialogs. The developer shall focus on creating optimized content for his application.

Live Demo

https://felixfurtmayr.github.io/light-bind/example.html

Running The Examples Locally: ES6 modules require a web server. Choose any of these options:

python3 -m http.server 8000

Now visit: http://localhost:8000/example.html

Principles

  • Quick setup, Rapid Development, Minimal Footprint
  • Beautiful and short Code
  • Enhance the web standards
  • Provide core components for common needs (notifications, uploads, drag-and-drop, storage, http)
  • Reactive Data Binding, Component System

Todo

  • debugging
  • performance updates: initial load + repeat (compile the html directly)
  • make startup process more robust in all variants

low prio

  • css grid? icons?
  • routing recommendation?
  • filters - for date and currency? the reapeat itself does does filtering already better
  • diggest cycle after events?
  • animation

Build

To buid the minified version run:

npm i # install dependencies npm run build # build minified version with rollup

Quick Start

<script type="module">
  import { LightBind } from './lightbind.js';
   lightBind = new LightBind();
   lightBind.setGlobals();
   lightBind.start();
</script>
<div bind-function="CounterApp">
  <h1>{{title}}</h1>
  <button on-click="increment()">Count: {{count}}</button>
</div>
<script>
function CounterApp(scope) {
  scope.title = 'Simple Counter';
  scope.count = 0;
  
  scope.increment = () => {
    scope.count++;
  };
}
</script>

Project Structure

For larger applications, organize your code like this:

/my-app
  ├── index.html
  │
  ├── views/
  │   ├── login/
  │   │   ├── template.html
  │   │   ├── script.js
  │   │   └── style.css
  │   └── confirm/
  │       └── template.html
  │
  ├── components/
  │   ├── user-profile/
  │   │   ├── template.html
  │   │   ├── script.js
  │   │   └── style.css
  │   └── product-card/
  │       ├── template.html
  │       ├── script.js
  │       └── style.css
  │
  ├── dialogs/
  │   ├── user-edit/
  │   │   ├── template.html
  │   │   ├── script.js
  │   │   └── style.css
  │   └── confirm/
  │       └── template.html
  │
  ├── styles/
  │   └── main.css
  │
  └── js/
      ├── app.js
      ├── your_libs.js
      └── /lightbind/lightbind.js

Data Binding

<div bind-function="ProductCard">
  <!-- Text Interpolation -->
  <h3>{{name}}</h3>
  
  <!-- Two-way Binding -->
  <input bind="quantity" type="number">
  
  <!-- Attribute Binding -->
  <div class="{{productClass}}"></div>
  
  <!-- Events -->
  <button on-click="addToCart(product)">Add to Cart</button>
  
  <!-- Condition -->
  <div bind-if="inStock">In Stock</div>
  
  <!-- List -->
  <ul><li bind-repeat="feature in features">{{feature}}</li></ul>
</div>

Built-in Modules

// HTTP Client
http.get('/api/users').then(data => {
  scope.users = data;
  scope.$refresh();
});
http.post('/api/users', { name: 'John' });

// Dialogs
dialog.open('login-form', { message: 'Pass something into the dialog' }, (result) => {
  scope.user = result;
  scope.$refresh();
});

// Notifications
notification.success('Data saved successfully!');
notification.warning({
  message: 'Your session will expire soon',
  duration: 10000
});

// Storage
storage.set('user', { id: 1, name: 'John' });
const user = storage.get('user');

Advanced Features

<!-- File Upload -->
<div bind-upload="handleFiles" multiple="true" drag="true">
  Drop files here or click to upload
</div>

<!-- Drag & Drop -->
<div bind-drag="itemData">Drag me</div>
<div bind-drop="handleDrop">Drop here</div>

<!-- Dynamic Components -->
<div bind-component="selectedComponent" data="componentData"></div>

For detailed documentation, see:

Browser Support

Supports all modern browsers that implement ES6 features.

Author

Felix Furtmayr

License

MIT