
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
A package that parses the /proc/net/sockstat file for socket connectivity statistics.
A Node.js package that parses the /proc/net/sockstat file for socket connectivity statistics.
First, install the package using npm:
npm install sockstat --save
Then, start using the package by importing it and running the main function:
var sockstat = require('sockstat');
// Get current sockstat info
sockstat.get()
.then(function (stats) {
// Log stats
console.log(stats);
}).catch(function (err) {
// Log error
console.log(err);
});
For the following /proc/net/sockstat:
sockets: used 123
TCP: inuse 19 orphan 105 tw 2115 alloc 132 mem 1638
UDP: inuse 1 mem 1
UDPLITE: inuse 0
RAW: inuse 0
FRAG: inuse 0 memory 0
The package returns the following output:
{
"sockets": {
"used": 123
},
"tcp": {
"inuse": 19,
"orphan": 105,
"tw": 2115,
"alloc": 132,
"mem": 1638
},
"udp": {
"inuse": 1,
"mem": 1
},
"udplite": {
"inuse": 0
},
"raw": {
"inuse": 0
},
"frag": {
"inuse": 0,
"mem": 0
}
}
Apache 2.0
FAQs
A package that parses the /proc/net/sockstat file for socket connectivity statistics.
We found that sockstat 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.