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

@camatsoft/tracelog

v1.0.6

Published

Official SDK for TraceLog Logging and tracing reporting with fully-structured, events that helps developers monitor and fix crashes in real time.

Readme

Description

Simplify Your Logging with CamatSoft.TraceLog

CamatSoft.TraceLog is a lightweight and extensible tracing solution designed to streamline logging in your .NET projects. It offers:

  • Simple configuration : Get started with just a few lines of code.
  • Multi-destination support : Log to the console, files, or third-party services like Serilog or Elastic Stack.
  • Robust extensibility : Tailor the package to your specific needs with custom hook systems.
  • Optimized performance : Minimal impact on your application’s performance.

Adopt CamatSoft.TraceLog and take full control of your logging, de facto.

TraceLog SDK for TypeScript by CamatSoft

| Integrations | NPM Version | Documentation | |---------|---------------|----------| | CamatSoft.TraceLog | npm | npm | documentation | | CamatSoft.TraceLog.Contract | npm | npm | documentation |

DSN

Register on CamatSoft.TraceLog

DSN Test

https://pRGLY9uhyKPu4b44s3Pe6a6pk46NBbRz4b2E2RMpb648h8DR2N7K7qsb97XFYM2r@o20241101.tracelog.camatsoft.com/2024111101
.

Constructor

CamatsoftTraceLog.Sdk.init()
CamatsoftTraceLog.Sdk.init(dsn:string)
CamatsoftTraceLog.Sdk.init(dsn:string, callbackfn?: (scope: Scope) => void)
CamatsoftTraceLog.Sdk.init(options:TraceLogOptions)
CamatsoftTraceLog.Sdk.init(callbackfn?: (options: TraceLogOptions) => void)

Methods

| Name | Params | Description | | --- | --- | -- | | async captureExecption(ex: Exception, callbackfn?: (scope: Scope) => void): Promise< CaptureExceptionResponseDto> | ex is Exception, scope is Action contains a scope | Capture exception | | async captureMessage(message: string, level?: DiagnosticLevel, callbackfn?: (scope: Scope) => void): Promise< CaptureMessageResponseDto> | message is a message log, level is a level type of log, scope is Action contains a scope | CaptureMessage

Exemples

in .ts (EntryPoint) :

import * as CamatsoftTracelog from '@camatsoft/tracelog'

CamatsoftTracelog.Sdk.init(options => { 
    options.dsn = "https://[email protected]/999999";
    options.configureScope(scope =>
    {
        scope.SetTag("MyTag", "MyValue");
    });
});

in another file .ts :

import * as CamatsoftTracelog from '@camatsoft/tracelog'

try
{
    throw "MyException";
}
catch (ex)
{
    let captureResponseDto = CamatsoftTracelog.Sdk.captureExecption(new CamatsoftTracelog.Exception({ message: ex }), scope =>
    {
        scope.SetTag("UserName", "Georges");
    });
}

Release Notes

v1.0.4

Fix bug setDiagnosticLevel in scope

v1.0.3

Add dependencies Add setDiagnosticLevel in scope

v1.0.2

Add export class

v1.0.1

Add ReadMe

v1.0.0

Create solution