Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/keverjs/traceid
- Owner: keverjs
- License: mit
- Created: 2021-03-23T03:31:41.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-08T08:05:17.000Z (over 2 years ago)
- Last Synced: 2024-03-20T10:06:12.002Z (9 months ago)
- Topics: kever, nodejs, plugin, traceid
- Language: TypeScript
- Homepage:
- Size: 34.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
],
}```