![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
hornet-js-gc-monitor
Advanced tools
Adds garbage collector statistics object into the javascript process object
Nodejs v8 garbage collector monitoring
This package is tested only with Node versions 0.10, 0.12 and 4.x
Note: This module currently works only on Linux operating systems.
This module collects GC statistics and put them into a Javascript Object : Here is the list of data the module reports periodically:
{
"total": {
"count": 10,
"time": 47.908777
},
"scavenge": {
"count": 8,
"time": 41.046463,
"maxtime": 7.650448
},
"marksweep": {
"count": 2,
"time": 6.862314,
"maxtime": 6.859382
}
}
The object is stored into the "process" object with a customizable key (default: "gcMonitor").
With npm do:
npm install hornet-gc-monitor
var hornetGcMonitor = require("hornet-gc-monitor");
// start without argument > statistics available at : process.gcMonitor
hornetGcMonitor.start();
var gcStatistics = process.gcMonitor;
// or start with argument. ex: statistics available at process.customKey
hornetGcMonitor.start("customKey");
var gcStatistics = process.customKey;
FAQs
Adds garbage collector statistics object into the javascript process object
The npm package hornet-js-gc-monitor receives a total of 2 weekly downloads. As such, hornet-js-gc-monitor popularity was classified as not popular.
We found that hornet-js-gc-monitor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.