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

lightrun

v1.42.0

Published

Lightrun Debug Agent for Node.js

Downloads

51,677

Readme

Lightrun for Node.js

Lightrun is a developer-native observabity platform. It's a way to add logs, inspect the state of the current execution (in a familiar, debugger-like view), and extract any type of code-level metric on the fly - without redeploying, restarting or even stopping the running application.

Check out our docs to learn more.

Getting Started

To get started with Lightrun you'll need three things:

  1. A Lightrun Account - you can get one here.
  2. A Lightrun Plugin - you'll have instructions to download it once you create an account, but you can also check them out here.
  3. A Lightrun Agent - which is this very NPM package! It's the thing that actually does the magic.

Once you've signed up for an account and downloaded the plugin, you can install the agent in your application.

Installing the Lightrun Agent

In order to install the Lightrun Node Agent please follow these steps:

  1. In your project's folder, install the node agent by running npm install lightrun.

  2. a. For regular Node.js applications - Require Lightrun at the start of your your application file (i.e. index.js or app.js):

    require('lightrun').start({
        lightrunSecret: '<COMPANY-SECRET>',
    });

    b. For TypeScript applications - Import Lightrun at the start of your your application file (i.e. index.ts or app.ts) and then start it:

    import * as lightrun from 'lightrun';
    
    lightrun.start({
        lightrunSecret: '<COMPANY-SECRET>',
    });

    You will have a <COMPANY-SECRET> auto-generated for you during the onbaording process, right after signing up for an account.

    Important Note - Sourcemap Files

    Lightrun for TypeScript needs to have sourcemap files available to it in order to work properly. Please make sure to set sourceMap to true when compiling your TypeScript code.

  3. Run the application as you normally would.

You should now see the application's agent popping up in the Lightrun Plugin's sidebar - you can now add logs, snapshots and metrics to your application.

Providing Credentials Via Environment Variables

You can optionally choose to provide the <COMPANY-SECRET> via environment variables to the Node process. To do so, follow these steps after installing the agent (note that this does not work on Windows):

  1. Import Lightrun at the start of the file:
require('lightrun').start();
  1. Run the application with the environment variables provided before the node command:
LIGHTRUN_SECRET=<COMPANY_SECRET> node index.js