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

lucidlines

v1.6.1

Published

Concurently: with browser

Readme

LucidLines

Terminal streaming server - Run multiple commands concurrently and view their output in a beautiful web interface.

npm version License: MIT Node.js Version Bun Version

View the docs: https://lucidlines.jujiplay.com

LucidLines is a CLI tool that runs multiple terminal commands concurrently and streams their output to a modern web interface. Perfect for development workflows, monitoring multiple services, or any scenario where you need to watch multiple command outputs simultaneously.

✨ Features

  • 🚀 Concurrent Command Execution - Run multiple commands simultaneously
  • 🌐 Web Interface - Beautiful, real-time terminal output in your browser
  • ⚙️ Flexible Configuration - JSON5 config files for easy setup
  • 🎨 Modern UI - Clean, responsive web interface with command tabs
  • 🔧 CLI Options - Command-line overrides and custom config files
  • 📱 Real-time Streaming - Live output updates via WebSocket
  • 🛠️ Development Mode - Enhanced logging for debugging

🚀 Quick Start

Installation

npm install --dev lucidlines

Initialize Configuration

lucidlines init

This creates a .lucidlines.json5 configuration file in your current directory.

Basic Usage

# Run with default configuration
lucidlines

# Run on custom port
lucidlines --port 3000

# Run specific commands
lucidlines --command "server:npm run dev" --command "logs:tail -f app.log"

📋 Configuration

LucidLines uses JSON5 format for configuration files, allowing comments and a more human-readable syntax.

Example .lucidlines.json5

{
  // Server configuration
  port: 8080,

  // Commands to run concurrently
  commands: [
    {
      // Display name for this command
      name: "Frontend",
      // Shell command to execute
      command: "cd ./client && npm run dev"
    },
    {
      name: "Backend",
      command: "cd ./server && npm run start"
    },
    {
      name: "Database",
      command: "docker-compose up db"
    }
  ],

  // Enable development mode for enhanced logging
  dev: false
}

Configuration Options

  • port (number): Server port (default: 8080)
  • commands (array): List of commands to run
    • name (string): Display name for the command
    • command (string): Shell command to execute
  • dev (boolean): Enable development mode with verbose logging

🎯 CLI Reference

Commands

lucidlines [subcommand] [options]

Subcommands

  • init - Create a .lucidlines.json5 configuration file

Options

| Option | Short | Description | Default | |--------|-------|-------------|---------| | --port <port> | -p | Server port | 8080 | | --command <name:cmd> | -c | Add command (can be used multiple times) | - | | --config <file> | -C | Path to JSON5 config file | .lucidlines.json5 | | --dev | -d | Enable development mode | false | | --help | -h | Show help message | - |

Examples

# Initialize configuration
lucidlines init

# Run with custom config file
lucidlines --config my-config.json5

# Run specific commands with custom port
lucidlines --port 3000 \
  --command "api:cd api && npm run dev" \
  --command "web:cd web && npm run start" \
  --command "logs:tail -f combined.log"

# Development mode with verbose logging
lucidlines --dev --config dev.json5

🌐 Web Interface

Once LucidLines is running, open your browser to the displayed URL (e.g., http://localhost:8080). The interface provides:

  • Real-time Output: Live streaming of command output
  • Command Tabs: Switch between different command outputs
  • Clean UI: Modern, responsive design
  • Auto-scroll: Automatically follows new output
  • History: View previous output with manual history loading

� API

For programmatic integration and advanced usage, LucidLines provides a comprehensive API. This allows you to:

  • Control processes programmatically
  • Stream output to custom applications
  • Integrate with monitoring systems
  • Build custom dashboards

API Documentation: https://lucidlines.jujiplay.com/core.html

�🔧 Development

Prerequisites

  • Node.js >= 22.0.0 or Bun >= 1.0.0
  • npm, yarn, or bun

Setup

# Clone the repository
git clone https://github.com/juji/lucidlines.git
cd lucidlines

# Install dependencies
npm install

# Build the project
npm run build

# Run in development mode
npm run dev

🤝 Contributing

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

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

🙏 Acknowledgments


Happy coding! 🎉