Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit 26c75a0

Browse files
committed
PoD(Proof Of Design) - v0
1 parent 80536d2 commit 26c75a0

13 files changed

Lines changed: 1199 additions & 0 deletions

File tree

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,16 @@ bin
1818
# Vim
1919
.swp
2020

21+
#VScode
22+
.vscode/
23+
2124
# Other
2225
TAGS
26+
27+
# nodejs
28+
node_modules/
29+
npm-debug.log
30+
.nyc_output/
31+
build/
32+
33+

packages/opencensus-core/package-lock.json

Lines changed: 335 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"name": "opencensus-nodejs-xp",
3+
"version": "0.0.1",
4+
"description": "OpenCensus is a toolkit for collecting application performance and behavior data.",
5+
"main": "build/src/index.js",
6+
"types": "build/src/index.d.js",
7+
"scripts": {
8+
"test": "echo \"Error: no test specified\" && exit 1"
9+
},
10+
"keywords": [
11+
"opencensus",
12+
"nodejs",
13+
"tracing",
14+
"profiling"
15+
],
16+
"author": "Google Inc.",
17+
"license": "Apache-2.0",
18+
"engines": {
19+
"node": ">=6.00"
20+
},
21+
"devDependencies": {
22+
"@types/continuation-local-storage": "^3.2.1",
23+
"@types/debug": "0.0.30",
24+
"@types/end-of-stream": "^1.4.0",
25+
"@types/mocha": "^2.2.48",
26+
"@types/node": "^9.4.7",
27+
"@types/semver": "^5.5.0",
28+
"@types/shimmer": "^1.0.1",
29+
"@types/uuid": "^3.4.3",
30+
"mocha": "^5.0.4",
31+
"typescript": "^2.7.2"
32+
},
33+
"dependencies": {
34+
"async_hooks": "^1.0.0",
35+
"continuation-local-storage": "^3.2.1",
36+
"debug": "^3.1.0",
37+
"end-of-stream": "^1.4.1",
38+
"require-in-the-middle": "^2.2.1",
39+
"semver": "^5.5.0",
40+
"shimmer": "^1.2.0",
41+
"uuid": "^3.2.1"
42+
}
43+
}

0 commit comments

Comments
 (0)