@memlab/heap-analysis 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -9
- package/package.json +8 -5
package/README.md
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
## memlab Heap Analysis
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This is the memlab heap analysis library. It contains all memlab built-in heap analysis and
|
|
4
|
+
provides a plugin interface for adding new heap analysis that can be easily added to memlab API and memlab CLI.
|
|
4
5
|
|
|
5
|
-
##
|
|
6
|
-
|
|
7
|
-
```
|
|
8
|
-
const heapAnalysis = require('heap-analysis');
|
|
9
|
-
|
|
10
|
-
// TODO: DEMONSTRATE API
|
|
11
|
-
```
|
|
6
|
+
## Full documentation
|
|
7
|
+
https://facebookincubator.github.io/memlab
|
package/package.json
CHANGED
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memlab/heap-analysis",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"license": "MIT",
|
|
4
5
|
"description": "heap analysis plugins for memlab",
|
|
6
|
+
"author": "Liang Gong <lgong@fb.com>",
|
|
7
|
+
"contributors": [],
|
|
5
8
|
"keywords": [
|
|
6
9
|
"heap",
|
|
7
10
|
"analysis",
|
|
8
|
-
"plugin"
|
|
11
|
+
"plugin",
|
|
12
|
+
"memlab",
|
|
13
|
+
"memory",
|
|
14
|
+
"leak"
|
|
9
15
|
],
|
|
10
|
-
"author": "Liang Gong <lgong@fb.com>",
|
|
11
|
-
"contributors": [],
|
|
12
|
-
"license": "MIT",
|
|
13
16
|
"main": "dist/index.js",
|
|
14
17
|
"types": "dist/index.d.ts",
|
|
15
18
|
"files": [
|