memlab 1.1.17 → 1.1.20

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.
Files changed (3) hide show
  1. package/README.md +5 -6
  2. package/bin/memlab +1 -1
  3. 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 Toolbox** - Built-in toolbox and APIs for finding memory
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
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env -S node --expose-gc --max-old-space-size=4096
1
+ #!/usr/bin/env node --expose-gc --max-old-space-size=4096
2
2
 
3
3
  /**
4
4
  * Copyright (c) Meta Platforms, Inc. and affiliates.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "memlab",
3
- "version": "1.1.17",
3
+ "version": "1.1.20",
4
4
  "license": "MIT",
5
5
  "description": "memlab is a framework that analyzes memory and finds memory leaks in JavaScript applications.",
6
6
  "main": "dist/index.js",