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

insightops-client

v0.1.10

Published

it implements the basic logger function for https://www.rapid7.com/products/insightops/

Downloads

8

Readme

Build Status codecov

objective

As the current official client-side JavaScript logging library for InsightOps do not fit my bussines. I would like to have this pakcage to help.

limition

It only able to send a simple restful based log. Do not support another npm logger winston

install

requirment node 12+ ( current lts @ 2019 )

yarn add insightops-client

example

import { logger } from 'insightops-client'

// expected log @ insightops will be
// {
//   "event": {
//     "message": "hello world",
//     "stringify": "{\"key\":\"value\"}"
//   }
// }
const log = logger('LOG_KEY')
log.info({
  message: 'hello world!!!',
  data: {
    key: 'value'
  }
})

test by ur self

LOG_KEY=uuid npx jest

curl

curl -X POST \
 https://us.js.logs.insight.rapid7.com/v1/logs/YOUR_LOG_TOKLEN \
 -H 'Accept: _/_' \
 -H 'Accept-Encoding: gzip, deflate' \
 -H 'Cache-Control: no-cache' \
 -H 'Connection: keep-alive' \
 -H 'Content-Length: 56' \
 -H 'Content-Type: application/json' \
 -H 'Host: us.js.logs.insight.rapid7.com' \
 -H 'User-Agent: PostmanRuntime/7.19.0' \
 -H 'X-Requested-With: XMLHttpRequest' \
 -H 'cache-control: no-cache' \
 -d '{"event":{"message":"123", "data":"321"},"level":"INFO"}'

about log key