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

smollit

v0.2.0

Published

Tiny string template helpers

Downloads

270

Readme

Smol Lit

Tiny string template helpers. Trims the string content and levels its indentation, optionally joining lines Markdown-style, helpful when authoring large strings in JS/TS (e.g., prompts, source code, or marketing copy).

The package features dual CJS/ESM support and built-in TypeScript definitions.

Installation

The package is available on npm:

npm install smollit

Usage

lit

The lit function trims and levels indentation of a string to a minimal common level, while preserving relative indentation.

import { lit } from "smollit";
// Also available as a module:
// import { lit } from "smollit/lit";

function poem() {
  console.log(lit`
    Two roads diverged in a wood, and I—
    I took the one less traveled by,
    And that has made all the difference.
  `);
  //=> "Two roads diverged in a wood, and I—\nI took the one less traveled by,\nAnd that has made all the difference."
}

function code() {
  console.log(lit`
    function hello() {
      console.log("Hello, cruel world!");
    }
  `);
  //=> "function hello() {\n  console.log(\"Hello, cruel world!\");\n}"
}

txt

The txt function trims and levels indentation of a string to a minimal common level, while preserving relative indentation. Also, it joins lines, Markdown-style.

import { txt } from "smollit";
// Also available as a module:
// import { txt } from "smollit/txt";

function quote() {
  console.log(txt`
    One must still have chaos in oneself to be able to give birth to a dancing
    star, and I say unto you that you still have chaos in you, and that in this
    unrest there lies the possibility of creation, transformation, and becoming
    something greater than what you are.
  `);
  //=> "One must still have chaos in oneself to be able to give birth to a dancing star, and I say unto you that you still have chaos in you, and that in this unrest there lies the possibility of creation, transformation, and becoming something greater than what you are."
}

function text() {
  console.log(txt`
    You have power over your mind—not outside events. Realize this, and you will
    find strength.

    The happiness of your life depends upon the quality of your thoughts.
    Therefore, guard accordingly, and take care that you entertain no notions
    unsuitable to virtue and reasonable nature.
  `);
  //=> "You have power over your mind—not outside events. Realize this, and you will find strength.\n\nThe happiness of your life depends upon the quality of your thoughts. Therefore, guard accordingly, and take care that you entertain no notions unsuitable to virtue and reasonable nature."
}

txts

The txts function normalizes multiple paragraph inputs with txt and joins them with a blank line.

import { txts } from "smollit";
// Also available as a module:
// import { txts } from "smollit/txts";

function paragraphs() {
  console.log(
    txts(
      `
        First paragraph line one
        line two
      `,
      "Second paragraph",
    ),
  );
  //=> "First paragraph line one line two\n\nSecond paragraph"
}

It also filters out non-string, falsy values, and empty strings:

function paragraphs() {
  console.log(
    txts(
      `
        First paragraph line one
        line two
      `,
      "    ",
      "",
      null,
      undefined,
      false,
      1,
      2n,
      "Second paragraph",
    ),
  );
  //=> "First paragraph line one line two\n\nSecond paragraph"
}

Changelog

See the changelog.

License

MIT © Sasha Koss