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

journol

v1.1.2

Published

The smart logging library you've always wanted

Readme

Journol

v1.1.2

Added winston exception handling, improved performance and updated documentation.

–––2023/2/7

Journol is the smart logging library you've always wanted. It allows you to log your messages with a high level of accuracy and ease, while also providing advanced searching capabilities and log visualization. With Journol, you can ensure that your logs are well-organized, easily accessible and presented in a manner that is both clear and comprehensive.

Journol NPM

Journol Github

Features

  • Logging messages with different levels of severity (error, warn, info, verbose, debug, silly)
  • Integration with Sentry for error reporting and tracking
  • Advanced log searching with support for full-text search, case sensitivity, and regex patterns
  • Log visualization using Chart.js for easy analysis and unde rstanding of log data
  • Ability to search logs by timestamp and level of severity

Getting Started

To get started with Journol, simply run npm i journol in your terminal.

Using Journol

Journol is easy to use, with just two main functions: logMessage and searchLogs.

logMessage

The logMessage function logs a message and the log level. It takes three parameters: message, level, and dsn. The message parameter is the message you want to log. The level parameter is the log level - you can use any of the log levels supported by Winston (error, warn, info, verbose, debug, silly). The dsn parameter is the Sentry DSN (Data Source Name) - if you want to use Sentry to report errors, you need to pass the DSN here. If you don't want to use Sentry, simply pass null or undefined.

Here's an example of how to use the logMessage function:

const journol = require('journol');
journol.logMessage('This is a log message', 'info', null);

searchLogs

The searchLogs function is used to search for logs. It takes one parameter: searchTerm. The searchTerm parameter is the term you want to search for in the logs. The function returns an array of logs that contain the search term.

Here's an example of how to use the searchLogs function:

const journol = require('journol');
const logs = journol.searchLogs('error');
console.log(logs);

Log Visualization

Journol uses Chart.js to visualize logs. To use the log visualization feature, you'll need to include Chart.js in your project. Once you've done that, simply pass the logs you want to visualize to Chart.js and it will generate the charts for you.

Here's an example of how to use the log visualization feature:

const journol = require('journol');
const logs = journol.searchLogs('error');
const chart = new Chart(logs);
chart.render();

Exception Handling

Journol uses Winston's exception handling to catch and log errors. The errors are logged with the error log level and sent to Sentry (if the Sentry DSN is provided).

Here's an example of how to use the exception handling feature:

const journol = require('journol');
try {
  throw new Error('This is an error');
} catch (error) {
  journol.logMessage(error.message, 'error', process.env.SENTRY_DSN);
}

Requirements

Node.js 8.0.0 or later
Winston 3.2.0 or later
Sentry 6.4.0 or later
Chart.js 2.9.3 or later
Lodash 4.17.15 or later

License

Journol is licensed under the MIT license.