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 🙏

© 2024 – Pkg Stats / Ryan Hefner

stationery

v0.5.1

Published

Compose letters at the command line.

Downloads

5

Readme

npm version build status

Stationery

A tool for composing letters in the command line. Inspired by jrnl.

$ dear Beatrice, Then is courtesy a turncoat. But it is certain I am loved of all ladies,
only you excepted; and I would I could find in my heart that I had not a hard heart,
for truly I love none. -- Benedick

Results in:

Beatrice-12-2-17.txt
> Dear Beatrice,
> 
> Then is courtesy a turncoat. But it is certain
> I am loved of all ladies, only you excepted; and
> I would I could find in my heart that I had not a
> hard heart, for truly I love none.
> 
> Yours,
> Benedick

Installation

npm install -g stationery

Compositions

Compose letters with the dear command, following much in the way that you would write a normal letter.

dear <subject>, <body> -- <signature>

Compositions require that a subject is specified. The subject line must end with a comma.

dear Beatrice,
dear Don John,

The rest of the command will be interpreted as the letter's body, up until any optional arguments.

End your letter with -- <signature> to provide your name as a signature. Signatures will default to "truly" unless otherwise specified in the .stationeryconfig. Note: a signature must be the last item provided to stationery, meaning all other arguments must come before it:

dear Beatrice, Hello. --tpl informal-greeting -- Benedick

Stationery saves new letters at the path: %USERPROFILE%/stationery/compositions/. Letters are named with the format: <subject>-<timestamp>.txt.

Working with Compositions

list: List all compositions with -l or --list:

dear -l

> Beatrice-2017-12-9.txt
> Don-John-2017-12-10.txt

list all: List compositions with contents with -la or --list --all:

dear -la

> Beatrice-2017-12-9.txt
>Dear Beatrice,
>
>Then is courtesy a turncoat.
>
>Yours,
>Benedick

...

editor: Open an editor (default vim) with -e or --editor. Letters will be saved to your compositions directory:

dear -e

> Name your composition: To Beatrice
# Opens vim
# Saves to usr/stationery/compositions/To-Beatrice-2017-12-24.txt

Configuration

By default, stationery will look for configuration at %USERPROFILE%/.stationeryconfig. You can override this behavior with the --config argument, supplying your own json file as the argument.

An example configuration file:

.stationeryconfig

{
    "signature": "Holmes: detective, entreprenuer, smart guy."
}

With the above configuration, this will be your output from stationery:

$ dear Beatrice, Hello.

/usr/stationery/compositions/Beatrice-12-2-17.txt
> Dear Beatrice,
>
> Hello.
>
> Yours,
> Holmes: detective, entreprenuer, smart guy.

Templates

Built-in Templates

  • basic-letter (default)

Use a built-in template with the --tpl command:

dear Beatrice, Then is courtesy a turncoat. --tpl basic-letter

Custom Templates

You can also write your own letter templates and provide them to Stationery through the --tpl command. To do this, simply make your own template (.mustache) and pass the file in as the parameter to --tpl.

dear Beatrice, Then is courtesy a turncoat. --tpl ./love-letters/my-template.mustache

Templates follow the standard mustache handlebar syntax with the following keywords:

  • subject - The subject of the letter
  • body - The body text of the letter
  • author - The author of the letter

Let's make a more formal letter, say formal-letter.mustache.

Dearest {{ subject }},

{{ body }}

Sincerely,
{{ author }}

Create your own template in any directory and pass it in using --tpl:

dear Beatrice, Then is courtesy a turncoat. --tpl ./templates/formal-letter.mustache

Roadmap

  • [x] Basic letter templates and save to file
  • [x] Template engine (allow users to provide path to mustache template)
  • [x] Multi-word subjects
  • [x] Configuration: default signatures
  • [x] Editing utilities
  • [ ] Searching utilities
  • [ ] Website
  • [ ] Provide more templating utilities
  • [ ] Notetaking
  • [ ] Multiple output formats
  • [ ] Copy to clipboard