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

text-prep-lite

v0.0.3

Published

Lightweight text preprocessing utilities for NLP in TypeScript.

Readme

text-prep-lite

npm version CI

Lightweight text preprocessing utilities for Natural Language Processing (NLP) written in TypeScript.

text-prep-lite provides two core helpers:

  • normalizeText – clean & normalise raw text into a predictable representation.
  • tokenize – break text into lowercase word tokens.

The library is intentionally dependency-free and suitable for browsers, Node.js, and serverless environments.


Why?

Natural-language data is messy. Before tokenisation or feeding text into an NLP model you often need to:

  • normalise case & whitespace
  • expand contractions ("can't" → "cannot")
  • strip punctuation / emojis

text-prep-lite does those common steps with zero runtime dependencies.


Installation

npm install text-prep-lite
# or
yarn add text-prep-lite

Usage

import { normalizeText, tokenize } from "text-prep-lite";

const raw = "  I can't believe it's not butter! 🧈  ";

const cleaned = normalizeText(raw, {
  expandContractions: true,
  removePunctuation: true,
  removeEmojis: true,
});
// → "i cannot believe it is not butter"

const tokens = tokenize(raw);
// → ["i", "can", "t", "believe", "it", "s", "not", "butter"]

API

normalizeText(input: string, options?: NormalizeOptions): string

Returns a cleaned version of input.

NormalizeOptions:

| Option | Default | Description | |--------|---------|-------------| | expandContractions | false | Expand contractions for the selected locale. | | removePunctuation | false | Strip punctuation characters. | | removeEmojis | false | Remove Unicode emoji characters. | | locale | 'en' | BCP-47 language tag for locale-specific rules (currently: en, sq, fr, de, he). |

Supported locales

  • en – English (default)
  • sq – Albanian
  • fr – French
  • de – German
  • he – Hebrew
  • es – Spanish
  • zh – Chinese (Mandarin)
  • yue – Chinese (Cantonese)
// French example
normalizeText("C'est incroyable!", { expandContractions: true, locale: "fr" });
// → "ce est incroyable!"  (punctuation kept in this call)

tokenize(input: string): string[]

  1. Converts text to lowercase.
  2. Removes punctuation & emojis.
  3. Splits by whitespace / word boundaries.

Returns an array of tokens.

tokenize has no options – it always lowercases, strips punctuation & emojis, and splits on whitespace.


🔗 Related

  1. 👉 Need word embeddings for semantic analysis?
    Check out wink-embeddings-small-en-50d

  2. 👉 Need a simple and robust PDF text extraction utility with a quality interface? Check out [pdf-worker-package]https://www.npmjs.com/package/pdf-worker-package


Development

# run tests
npm test

# build library
npm run build

License

MIT © Cavani21/thegreatbey


Contributing

  1. Fork & clone the repo
  2. npm i
  3. npm test – run lint & unit tests
  4. Submit pull-request 🚀

Please add tests for any new feature or bug-fix.