@sentry/node
- Version 8.48.0
- Published
- 3.16 MB
- 35 dependencies
- MIT license
Install
npm i @sentry/node
yarn add @sentry/node
pnpm add @sentry/node
Overview
Sentry Node SDK using OpenTelemetry for performance instrumentation
Index
Variables
Functions
- amqplibIntegration()
- childProcessIntegration()
- connectIntegration()
- consoleIntegration()
- contextLinesIntegration()
- createGetModuleFromFilename()
- dataloaderIntegration()
- disableAnrDetectionForCallback()
- expressErrorHandler()
- expressIntegration()
- fastifyIntegration()
- fsIntegration()
- generateInstrumentOnce()
- genericPoolIntegration()
- getAutoPerformanceIntegrations()
- getDefaultIntegrations()
- getDefaultIntegrationsWithoutPerformance()
- getSentryRelease()
- graphqlIntegration()
- hapiIntegration()
- httpIntegration()
- init()
- initOpenTelemetry()
- initWithoutDefaultIntegrations()
- kafkaIntegration()
- knexIntegration()
- koaIntegration()
- localVariablesIntegration()
- lruMemoizerIntegration()
- makeNodeTransport()
- modulesIntegration()
- mongoIntegration()
- mongooseIntegration()
- mysql2Integration()
- mysqlIntegration()
- nativeNodeFetchIntegration()
- nestIntegration()
- nodeContextIntegration()
- onUncaughtExceptionIntegration()
- onUnhandledRejectionIntegration()
- postgresIntegration()
- preloadOpenTelemetry()
- prismaIntegration()
- processThreadBreadcrumbIntegration()
- redisIntegration()
- setupConnectErrorHandler()
- setupExpressErrorHandler()
- setupFastifyErrorHandler()
- setupHapiErrorHandler()
- setupKoaErrorHandler()
- setupNestErrorHandler()
- spotlightIntegration()
- tediousIntegration()
- validateOpenTelemetrySetup()
Classes
Interfaces
Variables
variable anrIntegration
const anrIntegration: AnrReturn;
variable cron
const cron: { instrumentCron: typeof instrumentCron; instrumentNodeCron: typeof instrumentNodeCron; instrumentNodeSchedule: typeof instrumentNodeSchedule;};
Methods to instrument cron libraries for Sentry check-ins
variable defaultStackParser
const defaultStackParser: StackParser;
Node.js stack parser
variable SentryContextManager
const SentryContextManager: new ( ...args: unknown[]) => AsyncLocalStorageContextManager;
This is a custom ContextManager for OpenTelemetry, which extends the default AsyncLocalStorageContextManager. It ensures that we create a new hub per context, so that the OTEL Context & the Sentry Hub are always in sync.
Note that we currently only support AsyncHooks with this, but since this should work for Node 14+ anyhow that should be good enough.
Functions
function amqplibIntegration
amqplibIntegration: () => any;
Adds Sentry tracing instrumentation for the [amqplib](https://www.npmjs.com/package/amqplib) library.
For more information, see the [
amqplibIntegration
documentation](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/amqplib/).Example 1
const Sentry = require('@sentry/node');Sentry.init({integrations: [Sentry.amqplibIntegration()],});
function childProcessIntegration
childProcessIntegration: (options?: Options | undefined) => any;
Capture breadcrumbs for child processes and worker threads.
function connectIntegration
connectIntegration: () => any;
Adds Sentry tracing instrumentation for [Connect](https://github.com/senchalabs/connect/).
If you also want to capture errors, you need to call
setupConnectErrorHandler(app)
after you initialize your connect app.For more information, see the [connect documentation](https://docs.sentry.io/platforms/javascript/guides/connect/).
Example 1
const Sentry = require('@sentry/node');Sentry.init({integrations: [Sentry.connectIntegration()],})
function consoleIntegration
consoleIntegration: () => any;
Capture console logs as breadcrumbs.
function contextLinesIntegration
contextLinesIntegration: (options?: ContextLinesOptions | undefined) => any;
Capture the lines before and after the frame's context.
function createGetModuleFromFilename
createGetModuleFromFilename: ( basePath?: string, isWindows?: boolean) => (filename: string | undefined) => string | undefined;
Creates a function that gets the module name from a filename
function dataloaderIntegration
dataloaderIntegration: () => any;
Adds Sentry tracing instrumentation for the [dataloader](https://www.npmjs.com/package/dataloader) library.
For more information, see the [
dataloaderIntegration
documentation](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/dataloader/).Example 1
const Sentry = require('@sentry/node');Sentry.init({integrations: [Sentry.dataloaderIntegration()],});
function disableAnrDetectionForCallback
disableAnrDetectionForCallback: { <T>(callback: () => T): T; <T>(callback: () => Promise<T>): Promise<T>;};
function expressErrorHandler
expressErrorHandler: (options?: ExpressHandlerOptions) => ExpressErrorMiddleware;
An Express-compatible error handler.
function expressIntegration
expressIntegration: () => any;
Adds Sentry tracing instrumentation for [Express](https://expressjs.com/).
If you also want to capture errors, you need to call
setupExpressErrorHandler(app)
after you set up your Express server.For more information, see the [express documentation](https://docs.sentry.io/platforms/javascript/guides/express/).
Example 1
const Sentry = require('@sentry/node');Sentry.init({integrations: [Sentry.expressIntegration()],})
function fastifyIntegration
fastifyIntegration: () => any;
Adds Sentry tracing instrumentation for [Fastify](https://fastify.dev/).
If you also want to capture errors, you need to call
setupFastifyErrorHandler(app)
after you set up your Fastify server.For more information, see the [fastify documentation](https://docs.sentry.io/platforms/javascript/guides/fastify/).
Example 1
const Sentry = require('@sentry/node');Sentry.init({integrations: [Sentry.fastifyIntegration()],})
function fsIntegration
fsIntegration: ( options?: | { recordFilePaths?: boolean | undefined; recordErrorMessagesAsSpanAttributes?: boolean | undefined; } | undefined) => any;
This integration will create spans for
fs
API operations, like reading and writing files.**WARNING:** This integration may add significant overhead to your application. Especially in scenarios with a lot of file I/O, like for example when running a framework dev server, including this integration can massively slow down your application.
Parameter options
Configuration for this integration.
function generateInstrumentOnce
generateInstrumentOnce: <Options = unknown>( name: string, creator: (options?: Options) => Instrumentation) => ((options?: Options) => void) & { id: string };
Instrument an OpenTelemetry instrumentation once. This will skip running instrumentation again if it was already instrumented.
function genericPoolIntegration
genericPoolIntegration: () => any;
Adds Sentry tracing instrumentation for the [generic-pool](https://www.npmjs.com/package/generic-pool) library.
For more information, see the [
genericPoolIntegration
documentation](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/genericpool/).Example 1
const Sentry = require('@sentry/node');Sentry.init({integrations: [Sentry.genericPoolIntegration()],});
function getAutoPerformanceIntegrations
getAutoPerformanceIntegrations: () => Integration[];
With OTEL, all performance integrations will be added, as OTEL only initializes them when the patched package is actually required.
function getDefaultIntegrations
getDefaultIntegrations: (options: Options) => Integration[];
Get the default integrations for the Node SDK.
function getDefaultIntegrationsWithoutPerformance
getDefaultIntegrationsWithoutPerformance: () => Integration[];
Get default integrations, excluding performance.
function getSentryRelease
getSentryRelease: (fallback?: string) => string | undefined;
Returns a release dynamically from environment variables.
function graphqlIntegration
graphqlIntegration: (options?: GraphqlOptions | undefined) => any;
Adds Sentry tracing instrumentation for the [graphql](https://www.npmjs.com/package/graphql) library.
For more information, see the [
graphqlIntegration
documentation](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/graphql/).Parameter options
Configuration options for the GraphQL integration.
Example 1
```javascript const Sentry = require('@sentry/node');
Sentry.init({ integrations: [Sentry.graphqlIntegration()], });
function hapiIntegration
hapiIntegration: () => any;
Adds Sentry tracing instrumentation for [Hapi](https://hapi.dev/).
If you also want to capture errors, you need to call
setupHapiErrorHandler(server)
after you set up your server.For more information, see the [hapi documentation](https://docs.sentry.io/platforms/javascript/guides/hapi/).
Example 1
const Sentry = require('@sentry/node');Sentry.init({integrations: [Sentry.hapiIntegration()],})
function httpIntegration
httpIntegration: (options?: HttpOptions | undefined) => any;
The http integration instruments Node's internal http and https modules. It creates breadcrumbs and spans for outgoing HTTP requests which will be attached to the currently active span.
function init
init: (options?: NodeOptions | undefined) => NodeClient | undefined;
Initialize Sentry for Node.
function initOpenTelemetry
initOpenTelemetry: ( client: NodeClient, options?: AdditionalOpenTelemetryOptions) => void;
Initialize OpenTelemetry for Node.
function initWithoutDefaultIntegrations
initWithoutDefaultIntegrations: ( options?: NodeOptions | undefined) => NodeClient;
Initialize Sentry for Node, without any integrations added by default.
function kafkaIntegration
kafkaIntegration: () => any;
Adds Sentry tracing instrumentation for the [kafkajs](https://www.npmjs.com/package/kafkajs) library.
For more information, see the [
kafkaIntegration
documentation](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/kafka/).Example 1
```javascript const Sentry = require('@sentry/node');
Sentry.init({ integrations: [Sentry.kafkaIntegration()], });
function knexIntegration
knexIntegration: () => any;
Knex integration
Capture tracing data for [Knex](https://knexjs.org/).
Example 1
import * as Sentry from '@sentry/node';Sentry.init({integrations: [Sentry.knexIntegration()],});
function koaIntegration
koaIntegration: () => any;
Adds Sentry tracing instrumentation for [Koa](https://koajs.com/).
If you also want to capture errors, you need to call
setupKoaErrorHandler(app)
after you set up your Koa server.For more information, see the [koa documentation](https://docs.sentry.io/platforms/javascript/guides/koa/).
Example 1
const Sentry = require('@sentry/node');Sentry.init({integrations: [Sentry.koaIntegration()],})
function localVariablesIntegration
localVariablesIntegration: ( options?: LocalVariablesIntegrationOptions) => Integration;
function lruMemoizerIntegration
lruMemoizerIntegration: () => any;
Adds Sentry tracing instrumentation for the [lru-memoizer](https://www.npmjs.com/package/lru-memoizer) library.
For more information, see the [
lruMemoizerIntegration
documentation](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/lrumemoizer/).Example 1
```javascript const Sentry = require('@sentry/node');
Sentry.init({ integrations: [Sentry.lruMemoizerIntegration()], });
function makeNodeTransport
makeNodeTransport: (options: NodeTransportOptions) => Transport;
Creates a Transport that uses native the native 'http' and 'https' modules to send events to Sentry.
function modulesIntegration
modulesIntegration: () => any;
Add node modules / packages to the event.
Only works in CommonJS (CJS) environments.
function mongoIntegration
mongoIntegration: () => any;
Adds Sentry tracing instrumentation for the [mongodb](https://www.npmjs.com/package/mongodb) library.
For more information, see the [
mongoIntegration
documentation](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/mongo/).Example 1
const Sentry = require('@sentry/node');Sentry.init({integrations: [Sentry.mongoIntegration()],});
function mongooseIntegration
mongooseIntegration: () => any;
Adds Sentry tracing instrumentation for the [mongoose](https://www.npmjs.com/package/mongoose) library.
For more information, see the [
mongooseIntegration
documentation](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/mongoose/).Example 1
const Sentry = require('@sentry/node');Sentry.init({integrations: [Sentry.mongooseIntegration()],});
function mysql2Integration
mysql2Integration: () => any;
Adds Sentry tracing instrumentation for the [mysql2](https://www.npmjs.com/package/mysql2) library.
For more information, see the [
mysql2Integration
documentation](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/mysql2/).Example 1
const Sentry = require('@sentry/node');Sentry.init({integrations: [Sentry.mysqlIntegration()],});
function mysqlIntegration
mysqlIntegration: () => any;
Adds Sentry tracing instrumentation for the [mysql](https://www.npmjs.com/package/mysql) library.
For more information, see the [
mysqlIntegration
documentation](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/mysql/).Example 1
const Sentry = require('@sentry/node');Sentry.init({integrations: [Sentry.mysqlIntegration()],});
function nativeNodeFetchIntegration
nativeNodeFetchIntegration: (options?: NodeFetchOptions | undefined) => any;
function nestIntegration
nestIntegration: () => any;
Integration capturing tracing data for NestJS.
Deprecated
The
nestIntegration
is deprecated. Instead, use the NestJS SDK directly (@sentry/nestjs
), or use thenestIntegration
export from@sentry/nestjs
.
function nodeContextIntegration
nodeContextIntegration: (options?: ContextOptions | undefined) => any;
Capture context about the environment and the device that the client is running on, to events.
function onUncaughtExceptionIntegration
onUncaughtExceptionIntegration: ( options?: Partial<OnUncaughtExceptionOptions> | undefined) => any;
Add a global exception handler.
function onUnhandledRejectionIntegration
onUnhandledRejectionIntegration: ( options?: Partial<OnUnhandledRejectionOptions> | undefined) => any;
Add a global promise rejection handler.
function postgresIntegration
postgresIntegration: () => any;
Adds Sentry tracing instrumentation for the [pg](https://www.npmjs.com/package/pg) library.
For more information, see the [
postgresIntegration
documentation](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/postgres/).Example 1
const Sentry = require('@sentry/node');Sentry.init({integrations: [Sentry.postgresIntegration()],});
function preloadOpenTelemetry
preloadOpenTelemetry: (options?: NodePreloadOptions) => void;
Preload OpenTelemetry for Node. This can be used to preload instrumentation early, but set up Sentry later. By preloading the OTEL instrumentation wrapping still happens early enough that everything works.
function prismaIntegration
prismaIntegration: () => any;
Adds Sentry tracing instrumentation for the [prisma](https://www.npmjs.com/package/prisma) library.
For more information, see the [
prismaIntegration
documentation](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/prisma/).Example 1
Make sure
previewFeatures = ["tracing"]
is set in the prisma client generator block. See the [prisma docs](https://www.prisma.io/docs/concepts/components/prisma-client/opentelemetry-tracing) for more details.generator client {provider = "prisma-client-js"previewFeatures = ["tracing"]}Then you can use the integration like this:
const Sentry = require('@sentry/node');Sentry.init({integrations: [Sentry.prismaIntegration()],});
function processThreadBreadcrumbIntegration
processThreadBreadcrumbIntegration: (options?: Options | undefined) => any;
Capture breadcrumbs for child processes and worker threads.
Deprecated
Use
childProcessIntegration
integration instead. Functionally they are the same.processThreadBreadcrumbIntegration
will be removed in the next major version.
function redisIntegration
redisIntegration: (options?: RedisOptions | undefined) => any;
Adds Sentry tracing instrumentation for the [redis](https://www.npmjs.com/package/redis) and [ioredis](https://www.npmjs.com/package/ioredis) libraries.
For more information, see the [
redisIntegration
documentation](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/redis/).Example 1
const Sentry = require('@sentry/node');Sentry.init({integrations: [Sentry.redisIntegration()],});
function setupConnectErrorHandler
setupConnectErrorHandler: (app: ConnectApp) => void;
Add a Connect middleware to capture errors to Sentry.
Parameter app
The Connect app to attach the error handler to
Example 1
const Sentry = require('@sentry/node');const connect = require("connect");const app = connect();Sentry.setupConnectErrorHandler(app);// Add you connect routes hereapp.listen(3000);
function setupExpressErrorHandler
setupExpressErrorHandler: ( app: { use: (middleware: ExpressMiddleware | ExpressErrorMiddleware) => unknown; }, options?: ExpressHandlerOptions) => void;
Add an Express error handler to capture errors to Sentry.
The error handler must be before any other middleware and after all controllers.
Parameter app
The Express instances
Parameter options
Configuration options for the handler
Example 1
const Sentry = require('@sentry/node');const express = require("express");const app = express();// Add your routes, etc.// Add this after all routes,// but before any and other error-handling middlewares are definedSentry.setupExpressErrorHandler(app);app.listen(3000);
function setupFastifyErrorHandler
setupFastifyErrorHandler: (fastify: Fastify) => void;
Add an Fastify error handler to capture errors to Sentry.
Parameter fastify
The Fastify instance to which to add the error handler
Example 1
const Sentry = require('@sentry/node');const Fastify = require("fastify");const app = Fastify();Sentry.setupFastifyErrorHandler(app);// Add your routes, etc.app.listen({ port: 3000 });
function setupHapiErrorHandler
setupHapiErrorHandler: (server: Server) => Promise<void>;
Add a Hapi plugin to capture errors to Sentry.
Parameter server
The Hapi server to attach the error handler to
Example 1
const Sentry = require('@sentry/node');const Hapi = require('@hapi/hapi');const init = async () => {const server = Hapi.server();// all your routes hereawait Sentry.setupHapiErrorHandler(server);await server.start();};
function setupKoaErrorHandler
setupKoaErrorHandler: (app: { use: (arg0: (ctx: any, next: any) => Promise<void>) => void;}) => void;
Add an Koa error handler to capture errors to Sentry.
The error handler must be before any other middleware and after all controllers.
Parameter app
The Express instances
Parameter options
Configuration options for the handler
Example 1
const Sentry = require('@sentry/node');const Koa = require("koa");const app = new Koa();Sentry.setupKoaErrorHandler(app);// Add your routes, etc.app.listen(3000);
function setupNestErrorHandler
setupNestErrorHandler: ( app: MinimalNestJsApp, baseFilter: NestJsErrorFilter) => void;
Setup an error handler for Nest.
Deprecated
setupNestErrorHandler
is deprecated. Instead use the@sentry/nestjs
package, which has more functional APIs for capturing errors. See the [@sentry/nestjs
Setup Guide](https://docs.sentry.io/platforms/javascript/guides/nestjs/) for how to set up the Sentry NestJS SDK.
function spotlightIntegration
spotlightIntegration: ( options?: Partial<SpotlightConnectionOptions> | undefined) => any;
Use this integration to send errors and transactions to Spotlight.
Learn more about spotlight at https://spotlightjs.com
Important: This integration only works with Node 18 or newer.
function tediousIntegration
tediousIntegration: () => any;
Adds Sentry tracing instrumentation for the [tedious](https://www.npmjs.com/package/tedious) library.
For more information, see the [
tediousIntegration
documentation](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/tedious/).Example 1
const Sentry = require('@sentry/node');Sentry.init({integrations: [Sentry.tediousIntegration()],});
function validateOpenTelemetrySetup
validateOpenTelemetrySetup: () => void;
Validate that your OpenTelemetry setup is correct.
Classes
class NodeClient
class NodeClient extends ServerRuntimeClient<NodeClientOptions> {}
A client for using Sentry with Node & OpenTelemetry.
constructor
constructor(options: NodeClientOptions);
property traceProvider
traceProvider: any;
property tracer
readonly tracer: Tracer;
Get the OTEL tracer.
method close
close: (timeout?: number | undefined) => PromiseLike<boolean>;
method flush
flush: (timeout?: number) => Promise<boolean>;
method startClientReportTracking
startClientReportTracking: () => void;
Will start tracking client reports for this client.
NOTICE: This method will create an interval that is periodically called and attach a
process.on('beforeExit')
hook. To clean up these resources, call.close()
when you no longer intend to use the client. Not doing so will result in a memory leak.
Interfaces
interface NodeOptions
interface NodeOptions extends Options<NodeTransportOptions>, BaseNodeOptions {}
Configuration options for the Sentry Node SDK
See Also
@sentry/core Options for more information.
Package Files (46)
- build/types/cron/index.d.ts
- build/types/index.d.ts
- build/types/integrations/anr/index.d.ts
- build/types/integrations/childProcess.d.ts
- build/types/integrations/console.d.ts
- build/types/integrations/context.d.ts
- build/types/integrations/contextlines.d.ts
- build/types/integrations/fs.d.ts
- build/types/integrations/http/index.d.ts
- build/types/integrations/local-variables/index.d.ts
- build/types/integrations/modules.d.ts
- build/types/integrations/node-fetch.d.ts
- build/types/integrations/onuncaughtexception.d.ts
- build/types/integrations/onunhandledrejection.d.ts
- build/types/integrations/spotlight.d.ts
- build/types/integrations/tracing/amqplib.d.ts
- build/types/integrations/tracing/connect.d.ts
- build/types/integrations/tracing/dataloader.d.ts
- build/types/integrations/tracing/express.d.ts
- build/types/integrations/tracing/fastify.d.ts
- build/types/integrations/tracing/genericPool.d.ts
- build/types/integrations/tracing/graphql.d.ts
- build/types/integrations/tracing/hapi/index.d.ts
- build/types/integrations/tracing/index.d.ts
- build/types/integrations/tracing/kafka.d.ts
- build/types/integrations/tracing/knex.d.ts
- build/types/integrations/tracing/koa.d.ts
- build/types/integrations/tracing/lrumemoizer.d.ts
- build/types/integrations/tracing/mongo.d.ts
- build/types/integrations/tracing/mongoose.d.ts
- build/types/integrations/tracing/mysql.d.ts
- build/types/integrations/tracing/mysql2.d.ts
- build/types/integrations/tracing/nest/nest.d.ts
- build/types/integrations/tracing/postgres.d.ts
- build/types/integrations/tracing/prisma.d.ts
- build/types/integrations/tracing/redis.d.ts
- build/types/integrations/tracing/tedious.d.ts
- build/types/otel/contextManager.d.ts
- build/types/otel/instrument.d.ts
- build/types/sdk/api.d.ts
- build/types/sdk/client.d.ts
- build/types/sdk/index.d.ts
- build/types/sdk/initOtel.d.ts
- build/types/transports/http.d.ts
- build/types/types.d.ts
- build/types/utils/module.d.ts
Dependencies (35)
- @opentelemetry/api
- @opentelemetry/context-async-hooks
- @opentelemetry/core
- @opentelemetry/instrumentation
- @opentelemetry/instrumentation-amqplib
- @opentelemetry/instrumentation-connect
- @opentelemetry/instrumentation-dataloader
- @opentelemetry/instrumentation-express
- @opentelemetry/instrumentation-fastify
- @opentelemetry/instrumentation-fs
- @opentelemetry/instrumentation-generic-pool
- @opentelemetry/instrumentation-graphql
- @opentelemetry/instrumentation-hapi
- @opentelemetry/instrumentation-http
- @opentelemetry/instrumentation-ioredis
- @opentelemetry/instrumentation-kafkajs
- @opentelemetry/instrumentation-knex
- @opentelemetry/instrumentation-koa
- @opentelemetry/instrumentation-lru-memoizer
- @opentelemetry/instrumentation-mongodb
- @opentelemetry/instrumentation-mongoose
- @opentelemetry/instrumentation-mysql
- @opentelemetry/instrumentation-mysql2
- @opentelemetry/instrumentation-nestjs-core
- @opentelemetry/instrumentation-pg
- @opentelemetry/instrumentation-redis-4
- @opentelemetry/instrumentation-tedious
- @opentelemetry/instrumentation-undici
- @opentelemetry/resources
- @opentelemetry/sdk-trace-base
- @opentelemetry/semantic-conventions
- @prisma/instrumentation
- @sentry/core
- @sentry/opentelemetry
- import-in-the-middle
Dev Dependencies (1)
Peer Dependencies (0)
No peer dependencies.
Badge
To add a badge like this oneto your package's README, use the codes available below.
You may also use Shields.io to create a custom badge linking to https://www.jsdocs.io/package/@sentry/node
.
- Markdown[![jsDocs.io](https://img.shields.io/badge/jsDocs.io-reference-blue)](https://www.jsdocs.io/package/@sentry/node)
- HTML<a href="https://www.jsdocs.io/package/@sentry/node"><img src="https://img.shields.io/badge/jsDocs.io-reference-blue" alt="jsDocs.io"></a>
- Updated .
Package analyzed in 5538 ms. - Missing or incorrect documentation? Open an issue for this package.