1.0.1 • Published 5 years ago

on-async-hook v1.0.1

Weekly downloads
6
License
MIT
Repository
github
Last release
5 years ago

on-async-hook 🔍

npm version build status downloads js-standard-style

async_hook trace emitter to help you with your tracing needs. Fair warning, async_hook api is only available in node 8, and is an under an experimental flag.

Usage

var onAsyncHook = require('on-async-hook')

onAsyncHook(function (data) {
  console.log(data)
})

API

stop = onAsyncHook([opts], cb(data))

Create an instance of onAsyncHook. Calls a callback with data you can add to your logger.

stop()

Disable onAsyncHook instance.

Install

npm install on-async-hook 

MIT