Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/keverjs/traceid

a kever plugin, generate traceid and mount it to context.
https://github.com/keverjs/traceid

kever nodejs plugin traceid

Last synced: about 2 months ago
JSON representation

a kever plugin, generate traceid and mount it to context.

Awesome Lists containing this project

README

        

a kever global plugin, generate traceid and mount it to context.

## Install

> npm install @kever/traceid --save

## Start

```ts
//index.ts
import { createApp } from '@kever/core'

createApp({
port: 9000,
plugins: [
'@kever/traceid'
]
})
```

```json
// tsconfig.json
{
"compilerOptions": {
"types": [
"@kever/traceid"
],
}

```