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

lsc-distribution-mail-processor

v0.4.4

Published

```json npm i -S lsc-distribution-mail-processor ```

Readme

Install

npm i -S lsc-distribution-mail-processor

update to the last minor update (ex. 0.4.1 → 0.4.2)

npm update lsc-distribution-mail-processor

Usage

const { createAnalyser, createTransformer } = require('lsc-distribution-mail-processor')

// matches texts with any body and subject, containing '【注意】'
const match = createAnalyser({ subject: '【注意】', body: '' }); 
const isMatching = match( { subject: '【注意】サルの出没について', body: '....' }); // true or false

const transform = createTransformer('$d;$d;$d');
const newText = transform('line1\nline2\nline3\nline4'); // 'line1'

Examples

example text

【注意】サルの出没について \some value\ 09

condition regexp

【注意】      => MATCHES
(サル|イノシシ)      => MATCHES
\\\\somevalue\\\\       => MATCHES (matches \some value\)
09$       => MATCHES
出没$       => NOT MATCHES
=4**=423<fsdlf2395hf28572923=347294%(%$(^)$(@#$K#:       => NOT MATCHES (incorrect regex syntax)
  • empty string ⇒ MATCHES

Transformation commands

delete lines (single line command)

1d - delete the first line 
$d - delete the last line
2,4d - delete 2th, 3th and 4th line
$d;$d;$d - delete the last line 3 times

multiline command

1d
$d;$d
s/太郎鈴木/市長/
s/http/https/g
s/[0-9][0-9][0-9]-[0-9][0-9][0-9][0-9]/xxx-xxxx/
  1. delete first line

  2. delete last line twice

  3. replace 太郎鈴木 with 市長

  4. replace all entries of http with https (from v 0.4.2)

  5. replace pattern 000-0000 (where 0 is digit) with xxx-xxxx