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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@rpidanny/unquill-cli

v1.0.3

Published

Unquill CLI is a component of the Unquill project, designed to enhance the Developer Experience (DX) by simplifying the parsing of JSON logs generated by services using the [Quill](https://github.com/rpidanny/quill) logging library. It transforms complex

Downloads

17

Readme

Unquill CLI - Log Parsing Made Easy

Unquill CLI is a component of the Unquill project, designed to enhance the Developer Experience (DX) by simplifying the parsing of JSON logs generated by services using the Quill logging library. It transforms complex JSON logs into human-readable format, making local debugging a breeze.

Installation

Install Unquill CLI globally using npm:

npm install -g @rpidanny/unquill-cli

Usage

Unquill is simple to use, and it seamlessly integrates with your existing development environment. Simply invoke it from the command line followed by the command you want to run.

Here's the basic syntax:

unquill [options] -- [command]

Options

  • -s (or --service): Include the service name in the log output.
  • --jq: Apply a raw jq filter to include additional fields in the log.

Examples Usage

Basic Usage

unquill -- node app.js

This command will run app.js and display the Quill logs in a user-friendly format without the service name.

Include Service Name

unquill -s -- node app.js

Including the -s flag will add the service name to the log entries, making it easier to distinguish logs from different services.

Include Custom Fields

unquill --jq ".details.userId" -- node app.js

Using the --jq option with a jq filter, you can selectively include specific fields in the log output.

Contributing

If you would like to contribute to Unquill, please check out the GitHub repository and feel free to submit issues, pull requests, or provide feedback.