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

meet-simen

v2.0.1

Published

Get to know Simen via `npx meet-simen`

Readme

npx meet-simen

Get to know Simen using your command line with Node.js

Usage

To use this CLI run the following command:

npx meet-simen

Features

  • 🚀 Modern TypeScript codebase
  • 📦 Minimal dependencies
  • 🎨 Colorful terminal output with Chalk
  • 📊 GitHub stats integration
  • 🔗 Social links and personal bio
  • 📦 Beautiful boxed output with Boxen
  • 📝 Interactive CV with work experience, skills, and projects
  • 🔄 Remote data loading from GitHub (always up-to-date)
  • 🧩 Modular architecture for easy maintenance
  • 🎭 Interactive mode with step-by-step navigation

Options

Usage: meet-simen [options]

Options:
  -V, --version       output the version number
  -b, --no-bio        Hide bio information
  -s, --no-social     Hide social links
  -a, --no-ad         Hide the ad
  -e, --no-experience Hide work experience
  -k, --no-skills     Hide skills
  -p, --no-projects   Hide projects
  -r, --remote        Load data from remote source (GitHub)
  -i, --interactive   Interactive mode (press Enter to navigate)
  -d, --debug         Show debug information
  --no-clear          Do not clear the console
  -h, --help          display help for command

Data Customization

All CV data is stored in JSON files in the src/data directory:

  • bio.json - Personal bio information
  • experience.json - Work experience details
  • skills.json - Technical skills
  • projects.json - Notable projects
  • social.json - Social media links
  • config.json - Configuration settings

You can easily update these files to customize your CV without changing the code.

Remote Data Loading

The CLI can load data directly from GitHub, allowing you to update your CV information without republishing the package. To use this feature:

  1. Update the JSON files in your GitHub repository
  2. Run the CLI with the -r or --remote flag
npx meet-simen --remote

Development

This project uses TypeScript and npm for development.

Setup

# Clone the repository
git clone https://github.com/Eventyret/meet-simen.git
cd meet-simen

# Install dependencies
npm install

# Run in development mode
npm run dev

Building

# Build the project
npm run build

Local Testing

To test the CLI locally, link it:

# Link the package
npm link

# Now you can run it
meet-simen

Publishing

# Publish to npm
npm publish

Requirements

  • Node.js 16 or higher