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

journalista

v1.0.5

Published

Personal journal cli app

Readme

Journalista

Personal journal cli app It is a terminal application to store personal journal log with user management, to be run locally and not on cloud. For simplicity considering we could enter only textual content in journal data.

Terminologies

  • User : An independent entity with access to its own journal. Data should not be shared between users.
  • Journal : A text log containing multiple entries.
  • Journal Entry : A piece for text accompanied by a timestamp

Features

  1. User Management: On starting the application the user is presented with either Login or Sign Up options.
  2. Journal Management: After authentication, the user is presented with two options to either list all his previous entries or create a new entry. Maximum 50 Journal entries is allowed per user. Newer entry after 50 replace the oldest entry(like a queue).
  3. While showing previous entries each entry is preceded by time in readable format and data followed by the text input Eg. 25 Jun 2019 10.30pm - Some text that the user entered 23 Jun 2019 10.00am - Some text that user entered

Installation (Using npm registries)

There are two ways to install the cli (Do any one)

  • From npm registry
npm install -g journalista
journalista
  • From github registry
npm install -g @rajat19/journalista
journalista

How to run this project (if you want to code/debug)

  • Install dependencies
npm i
  • Make changes to code
  • Then run following commands
    • For development purposes you can directly do
      npm run start
    • For build and using journalista command (Alternate)
      npm run build && npm link
      journalista

What the system does

  1. Allows login/signup using command line
  2. List/Create journals for authorized users

The system encrypts username/passwords and journals so that these are not visible by anyone just crawling through the repo. Your journals are secure with us.

Two types of encryption is done in this project

  1. bcrypt - hashing using salt - used to encrypt username/password
  2. crypto - aes-256-ctr - used to encrypt/decrypt journals

Code for these encryption/decryption can be found in utils/hash.ts

Publish

This package uses github actions to publish to both npm as well as github registries Check .github/workflows/npm-publish.yml file for more details