memlab 1.1.18 → 1.1.19
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 -6
- package/bin/memlab +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
memlab is an E2E testing and analysis framework for finding JavaScript memory
|
|
4
4
|
leaks and optimization opportunities.
|
|
5
5
|
|
|
6
|
+
Online Resources:
|
|
7
|
+
* [Official Website and Demo](https://facebookincubator.github.io/memlab)
|
|
8
|
+
* [Documentation](https://facebookincubator.github.io/memlab/docs/intro)
|
|
9
|
+
|
|
6
10
|
Features:
|
|
7
11
|
* **Browser memory leak detection** - Write test scenario with puppeteer API,
|
|
8
12
|
memlab auto diffs JS heap snapshots, filters out memory leaks, and
|
|
@@ -10,17 +14,12 @@ Features:
|
|
|
10
14
|
* **Object-oriented heap traversing API** - Supports self-defined memory leak
|
|
11
15
|
detector and programmatically analyzing JS heap snapshots taken from
|
|
12
16
|
Chromium-based browsers, Node.js, Electron.js, and Hermes
|
|
13
|
-
* **Memory CLI
|
|
17
|
+
* **Memory CLI toolbox** - Built-in toolbox and APIs for finding memory
|
|
14
18
|
optimization opportunities (not necessarily memory leaks)
|
|
15
19
|
* **Memory assertions in Node.js** - Enables unit test or running node.js
|
|
16
20
|
program to take a heap snapshot of its own state, do self memory checking,
|
|
17
21
|
or write advanced memory assertions
|
|
18
22
|
|
|
19
|
-
Online Resources:
|
|
20
|
-
|
|
21
|
-
* [Official Website and Demo](https://facebookincubator.github.io/memlab)
|
|
22
|
-
* [Documentation](https://facebookincubator.github.io/memlab/docs/intro)
|
|
23
|
-
|
|
24
23
|
## CLI Usage
|
|
25
24
|
|
|
26
25
|
Install the CLI
|
package/bin/memlab
CHANGED