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 🙏

© 2025 – Pkg Stats / Ryan Hefner

hyper-welcome-message

v2.0.0

Published

Beautiful neofetch-like system info display with frosted glass effect for Hyper terminal

Readme

hyper-welcome-message

A beautiful Hyper terminal plugin that displays system information in a neofetch-like style with a stunning frosted glass effect.

Version License

Features

  • 🎨 Beautiful neofetch-like display - Shows system information with elegant ASCII art
  • 🌈 Dual theme support - Automatic light and dark theme detection
  • Frosted glass effect - Transparent backdrop blur for modern aesthetics
  • 📊 Comprehensive system info - OS, CPU, memory, uptime, and more
  • ⌨️ Keyboard shortcut - Toggle display with Ctrl+Shift+W
  • 🎯 Zero configuration - Works out of the box

Installation

Using Hyper's CLI

```bash hyper install hyper-welcome-message ```

Manual Installation

Add the plugin to your ~/.hyper.js configuration:

```javascript module.exports = { plugins: ['hyper-welcome-message'] } ```

Then restart Hyper or reload the configuration.

Configuration

Add custom settings to your ~/.hyper.js:

```javascript module.exports = { config: { welcomeMessage: { showWelcome: true, // Enable/disable the welcome message theme: 'auto', // 'auto', 'light', or 'dark' enableFrostedGlass: true, // Enable/disable frosted glass effect showSystemInfo: true, // Show system information showTime: true // Show current time } } } ```

Configuration Options

| Option | Type | Default | Description | |--------|------|---------|-------------| | showWelcome | boolean | true | Enable/disable the welcome message | | theme | string | 'auto' | Color theme: 'auto', 'light', or 'dark' | | enableFrostedGlass | boolean | true | Enable frosted glass background effect | | showSystemInfo | boolean | true | Display system information | | showTime | boolean | true | Show current date and time |

What It Shows

The plugin displays:

  • Operating System - Platform and architecture
  • Hostname - Your computer's name
  • Uptime - How long the system has been running
  • CPU - Processor model and core count
  • Memory - Available and total RAM
  • Node Version - Current Node.js version

Keyboard Shortcuts

  • Ctrl+Shift+W (Windows/Linux) - Toggle welcome message display
  • Cmd+Shift+W (macOS) - Toggle welcome message display

Frosted Glass Effect

The plugin automatically applies a beautiful frosted glass effect to your terminal:

  • Dark Theme: Semi-transparent dark background with blur
  • Light Theme: Semi-transparent light background with blur
  • Smooth Transitions: Seamless theme switching
  • Custom Scrollbars: Styled to match the frosted aesthetic

Example Output

Dark Theme

``` ╭─────────────────────╮ │ ╭───╮ ╭───╮ ╭───╮ │ │ │ │ │ │ │ │ │ │ ╰───╯ ╰───╯ ╰───╯ │ │ │ │ H Y P E R │ ╰─────────────────────╯

╭─ System Information │ ├─ OS darwin arm64 ├─ Host MacBook-Pro ├─ Uptime 2d 5h 30m ├─ CPU Apple M1 Pro ├─ Cores 10 ├─ Memory 8.5GB / 16.0GB ├─ Node v18.17.0 │ ╰─ Welcome to Hyper Terminal!

Type help to get started ```

Customization Examples

Disable Frosted Glass Effect

```javascript welcomeMessage: { enableFrostedGlass: false } ```

Force Dark Theme

```javascript welcomeMessage: { theme: 'dark' // Always use dark theme colors } ```

Minimal Configuration

```javascript welcomeMessage: { showSystemInfo: false, showTime: false } ```

Compatibility

  • Hyper v3.0.0 or higher
  • Works on macOS, Linux, and Windows
  • Supports both light and dark themes

Development

Local Development

  1. Clone this repository
  2. Link it to your Hyper plugins directory: ```bash cd hyper-welcome-message npm link cd ~/.hyper_plugins/local npm link hyper-welcome-message ```
  3. Add to localPlugins in your ~/.hyper.js: ```javascript localPlugins: ['hyper-welcome-message'] ```

Publishing to npm

  1. Update version in package.json
  2. Login to npm: npm login
  3. Publish: npm publish

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT © [Your Name]

Credits

Inspired by neofetch and the Hyper terminal community.

Links