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

@adbl/unfinished

v0.0.16

Published

Reactive Javascript UI library for dynamic web apps.

Downloads

313

Readme

unfinished

downloads (@adbl/unfinished)

unfinished is a client-side library for building web apps. Like React, it allows you to use JSX to create dynamic user interfaces.

If you've worked with HTML, CSS, and JavaScript, unfinished should be easy to pick up. It is designed to help you build applications quickly and efficiently.

Table of Contents

Key Features

Here's a breakdown of the core functionalities:

  • Lightweight: unfinished has a small footprint, which means it loads quickly without extra overhead.

  • JSX Support: You can use JSX to define your user interfaces. This allows you embed HTML-like structures directly into JavaScript.

  • Built-in Reactivity: @adbl/cells is used for reactivity. This means that parts of your UI that depend on data will automatically update, without the need for manual triggering or rerenders.

  • Components are DOM Elements: Components in unfinished are just standard DOM nodes. There is no extra layer. This gives you a high level of control and interoperability with existing DOM APIs.

  • Built-in Router: The library includes its own router, which makes it easier to build single-page applications. The router handles navigation between parts of your app without full page reloads.

  • (Experimental) Hot Module Reload Support: unfinished supports hot module reloads, which allow you to see changes instantly without refreshing the page. This speeds up development by letting you focus more on your application.

Installation

NOTE: This section assumes you already have Node.js and npm installed on your machine. If you don't, you can download them from the official Node.js website.

To get started with unfinished, you'll need to create a new project using our scaffolding tool.

This will set up the basic project structure for you. Then, you'll need to install dependencies and start the development server.

  • Create a new project:

    Open your terminal in your documents directory, and run the following command:

    npx @adbl/unfinished-start

    This command will prompt you for some details about your project (such as the name, if you want to use Tailwind etc.) and will generate the necessary project files.

  • Navigate to your project directory:

    After creating the project, navigate into the project by using cd and the name you used:

    cd your-project-name
  • Install dependencies:

    Run the following command to install all the required packages for your project:

    npm install
  • Start the development server:

    Finally, start the development server using this command in the same directory:

    npm run dev

    This command will start a local development server, and you'll be able to see your application at http://localhost:5229 in your browser.

Documentation

You can learn more about unfinished by reading the documentation.

License

unfinished is licensed under the MIT License.

Contributing

Contributions are welcome! Please read the contributing guidelines for more information.