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

@donmur247/heyyou

v1.0.0

Published

Start your day with this CLI app that delivers a daily dose of quotes!

Readme

heyYou!

A simple CLI program to display quote of the day for You!

Start your day with the right quote whether it's random, simply funny or inspirational.

This project is based on Mixed Messages project from Codecademy's back-end engineering capstone project.

Feel free to contribute with this project to expand it as the scope of this project is to cover basic fundamentals of Javascript project configuration using nodejs.

I used Typescript in this project to give type-hinting that I love to have for every project that I work on.

Install

npm install heyyou

Usage

Starting your day is easy as typing this to the terminal.

heyyou
Hello, user!

╭────────────────────────────────────────────────────────────────────────╮
│                                                                        │
│   "It does not matter how slowly you go as long as you do not stop."   │
│   - Confucius                                                          │
│                                                                        │
╰────────────────────────────────────────────────────────────────────────╯

By default it gives you random quotes from provided json data that come with the project.

heyyou --help

Usage: heyYou [options]

A CLI app to give user a random quote of the day.

Options:
  -f, --funny    Start your day with a funny quote.
  -i, --inspire  Get a random inspiring quote of the day.
  -a, --api      Get a random quote from thequoteshub API.
  -h, --help     display help for command

Will show the help option.

heyyou -f

Hey hey, user!

╭────────────────────────────────────────────────────────────────────────╮
│                                                                        │
│   "Be nice to nerds. You may end up working for them. We all could."   │
│   - Charles J. Sykes                                                   │
│                                                                        │
╰────────────────────────────────────────────────────────────────────────╯

Option for funny quotes.

heyyou -i

Believe in yourself, user!

╭────────────────────────────────────────────────────────────────────────────────╮
│                                                                                │
│   "Remember that wherever your heart is, there you will find your treasure."   │
│   - Paulo Coelho                                                               │
│                                                                                │
╰────────────────────────────────────────────────────────────────────────────────╯

Inspirational quotes.

heyyou -a

Here's a random quote for you, user!

╭─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│                                                                                                                             │
│   "...Stories want to be told. Stories have a power of their own ... You can't write a story until you've felt it.          │
│   Breathed it in. Walked with your characters. Talked with them."                                                           │
│   - Angelica Banks                                                                                                          │
│                                                                                                                             │
╰─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

Getting random quotes from thequoteshub.com API. Currently this is hardcoded in the code for fundamental practice. Ideally should be put as configurable option and payloads.