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 🙏

© 2026 – Pkg Stats / Ryan Hefner

andale

v0.7.1

Published

Andale (spanish for "come along") is a new take on routing frameworks. It is built on [effect](https://effect.website/) and focuses on functional concepts, type safety and easy code re-use.

Readme

Andale

Andale (spanish for "come along") is a new take on routing frameworks. It is built on effect and focuses on functional concepts, type safety and easy code re-use.

Documentation

Visit gitlab pages

Highlights, Reasons to use

Typesafe paths

Given a route like

{@includeCode ./tests/how-tos/EnforceQueryParams.test.ts#route}

You can build a typesafe path like

{@includeCode ./tests/how-tos/EnforceQueryParams.test.ts#path}

Simple dependency usage

{@includeCode ./tests/how-tos/Auth.test.ts#route}

Easy content negotiation

{@includeCode ./tests/how-tos/ContentNegotiation.test.ts#html route}

Straigtforward body parsing

Define a schema {@includeCode ./tests/how-tos/Structure/User/Entity.ts#schema} and use it {@includeCode ./tests/how-tos/Structure/User/Resource.ts#putUser}

For more information please check out the how-tos.

Inflating nested structures

Where you'd normally use JSON to send nested structures andale simply inflates your form values by key. E.g.

{@includeCode ./src/Body/Body.test.ts#inflate urlencoded}

Sends the key "friends[0].name" with value "Mary" which results in John having a Friend! Ok, in all seriousness, it shouldn't be hard to imagine simply using a <form> with the appropriate name attributes, e.g. like this:

const userForm = A.path("/user/create");

const getUser = userForm.pipe(
  A.verb("GET"),
  A.respond(function* () {
    return yield* A.Response.html(`
    <form>
      <input name="name" />
      <input name="age" type="number" />
      <input name="friends[0].name" />
      <button formmethod="POST" formaction="${A.pathTo(userForm)}" />
    </form>
  `);
  }),
);

const postUser = userForm.pipe(
  A.verb("POST"),
  A.body(User.omit("id")),
  A.respond(function* ({ body }) {
    yield* UserService.save(body).pipe(
      Effect.mapError(() => new A.Error.GenericServerError()),
    );
    return new Response(null, { status: 201 });
  }),
);

You could even combine this with htmx-tsx and some light type magic to build typesafe forms ;)

Quick Start

{@include ./tests/how-tos/Quickstart.md}

Contributing

The structure follows a few simple rules:

  1. Modules are uppercased
  2. Every module has its own directory which has the same name as the module, e.g. Foo/Foo.ts
  3. The module exports EVERYTHING
  4. There must be a index.ts file which lists the public exports, e.g. Foo/index.ts.
  5. there must be a <module name>.test.ts file next to the module, e.g. Foo/Foo.test.ts. This test module is meant for whitebox tests
  6. Blackbox tests go into the tests/ folder in the root and must never use anything else but the A module.