![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
system-stats
Advanced tools
Access host's file system, processor and memory usage.
This NPM package is written in ES6, so it is recommended to use strictly Node >= v6.4.0.
This package returns a Promise:
const system_stats = require('./system-stats.js')
// (1) Ask for system stats
system_stats.get()
// (2) Process promise response
.then( ( results ) => {
console.dir( results )
}, ( error ) => {
console.error( error )
} )
Parameters and Units
{
// [1, 5, 15]-minute CPU avgs normalized to [0.0, 1.0]:
proc: [ 0.005576171875, 0.008974609375, 0.010400390625 ],
mem: {
total: 16737234944, // bytes
free: 4571918336, // bytes
load: 0.7268414794141997 // normalized to [0.0, 1.0]
},
uptime: 747954, // seconds
fs: {
available: 2335936512, // bytes
free: 5330980864, // bytes
total: 58495991808, // bytes
load: 0.9600667252609856 // normalized to [0.0, 1.0]
}
}
FAQs
Access host's file system, processor and memory usage.
The npm package system-stats receives a total of 1 weekly downloads. As such, system-stats popularity was classified as not popular.
We found that system-stats 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.