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

log-vista

v2.0.1

Published

LogVista Agent - Lightweight system monitoring and log collection for any project/language

Readme

LogVista Agent

Universal monitoring agent for any programming language or framework. Monitor logs, metrics, and system performance with ease.

Quick Start

Global Installation

npm install -g @logvista/agent

Initialize in Your Project

Navigate to any project directory and run:

logvista init

This works with projects in any language:

  • Node.js (Express, Fastify, NestJS, etc.)
  • PHP (Laravel, Symfony, CodeIgniter, etc.)
  • Python (Django, Flask, FastAPI, etc.)
  • .NET (Core, Framework, ASP.NET, etc.)
  • Go (Gin, Echo, Fiber, etc.)
  • Java (Spring Boot, etc.)
  • Ruby (Rails, Sinatra, etc.)
  • Any application that writes log files

Start Monitoring

logvista start

Check Status

logvista status

Commands

| Command | Description | |---------|-------------| | logvista init | Initialize monitoring in current directory | | logvista start | Start monitoring | | logvista stop | Stop monitoring | | logvista status | Check monitoring status | | logvista config --show | Show current configuration | | logvista install | Install globally (admin required) |

Automatic Log Detection

The agent automatically detects log files based on common patterns for different languages:

PHP Projects

  • storage/logs/*.log (Laravel)
  • var/log/*.log (Symfony)
  • logs/*.log

.NET Projects

  • Logs/*.log
  • bin/Debug/netcoreapp*/*.log
  • bin/Release/netcoreapp*/*.log

Python Projects

  • logs/*.log
  • log/*.log
  • *.log (root level)

Node.js Projects

  • logs/*.log
  • log/*.log
  • *.log (root level)

Go Projects

  • *.log (root level)
  • logs/*.log

Java Projects

  • logs/*.log
  • log/*.log

Ruby/Rails Projects

  • log/*.log
  • tmp/*.log

Configuration

After running logvista init, edit .logvista/config.json:

{
  "central_system": {
    "url": "http://localhost:3001",
    "token": "your-agent-token-here"
  },
  "collection": {
    "interval": 30,
    "batch_size": 100,
    "retry_attempts": 3,
    "retry_delay": 5000
  },
  "projects": [
    {
      "project_name": "my-app",
      "pwd_path": "/path/to/project",
      "custom_log_paths": [
        "/path/to/project/logs/*.log"
      ],
      "enabled": true
    }
  ]
}

Features

  • Universal: Works with any language/framework
  • Automatic: Auto-detects common log patterns
  • Cross-platform: Windows, macOS, Linux
  • Lightweight: Minimal resource usage
  • Reliable: Built-in retry logic and offline storage
  • Secure: Token-based authentication
  • Real-time: Live log monitoring and metrics collection

System Requirements

  • Node.js 16.0.0 or higher
  • Read access to log files
  • Network access to LogVista central system

Language-Specific Examples

Laravel (PHP)

cd my-laravel-app
logvista init --name "My Laravel App"
logvista start

ASP.NET Core

cd MyDotNetApp
logvista init --name "My .NET App"  
logvista start

Django (Python)

cd my-django-project
logvista init --name "My Django App"
logvista start

Express.js (Node.js)

cd my-express-app
logvista init --name "My Express App"
logvista start

Spring Boot (Java)

cd my-spring-app
logvista init --name "My Spring App"
logvista start

Troubleshooting

No configuration found

# Make sure you're in the project directory
cd /path/to/your/project
logvista init

Connection issues

# Check status
logvista status

# Verify central system URL in config
logvista config --show

Permission issues

# Make sure the agent has read access to log files
chmod +r /path/to/logs/*.log

Support

  • GitHub: [LogVista Repository]
  • Documentation: [LogVista Docs]
  • Issues: [Report Issues]

License

MIT License - see LICENSE file for details.