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

helot

v1.0.1

Published

Painless personal email sending to LOTS of people

Readme

Helot

Sending personal emails to LOTS of people should not be a pain in the ass. Helot lets you send an email to a CSV list of recipients, based on a Markdown template.

This project was developed entirely in my browser using SourceLair.

Installation

To install Helot just run npm install -g helot.

Usage

Command Line Interface

To send an email to a CSV list of recipients with Helot, run the following command in your terminal:

helot --template=/path/to/template.md --recipients=/path/to/recipients.csv

Command Line Options

The Command Line Interface of Helot can be configured using the following options:

template

The path to the front-matter enabled Markdown template that Helot should parse and render with each recipient's data.

Template example
---
subject: Party next week
---

Hello {{ name }},

Next week we are throwing a party at **Awesome Place**. What about leaving {{ address }} and coming over?

It would be awesome to meet there and have fun.

Looking forward to seeing you.

Cheers,
Paris
recipients

The path to the recipients file that will be used to send the emails and render each template.

Example recipients file
name,email,address
John Doe,[email protected],1 Sesame str.
Bob,[email protected],1024 Public Rd.
Alice,[email protected],2048 Private Rd.
out (optional)

Path to a file to which output should be written instead of stderr.

dry-run (optional)

Don't send any email. Just print the output.

env-file (optional)

Path to a file that contains environment variables to load. Default value: .env

Example env file
SMTP_SERVER=smtp.gmail.com
SMTP_PORT=465
[email protected]
SMTP_PASSWORD=your email password
HELOT_FROM=Your name <[email protected]>

Environment Configuration

Helot should be configured to send emails through an SMTP server. Configuration should happen using the environment variables documented below.

SMTP_SERVER

This is the address of the SMTP server that will send the emails. Example value: smtp.gmail.com.

SMTP_PORT

This is the port used to access the SMTP server that will send the emails. Example value: 465.

SMTP_LOGIN

This is the login (username) used to authenticate with the SMTP server that will send the emails. Example value: [email protected].

SMTP_PASSWORD

This is the password used to authenticate with the SMTP server that will send the emails, along with the given SMTP login/username. Example value: your email password.

HELOT_FROM

This is the address from which the emails will be sent. Example value: Paris Kasidiaris <[email protected]>.

Default value: If this environment variable is not configured it will fall back to the value of SMTP_LOGIN.

License

Helot is licensed under the MIT License. Detailed license info can be found at the LICENSE file.