
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.

Native OS module API shim for older node.js versions
Node.js team was frozen the OS module API in 0.10.x version, however the API differs a bit in lower node.js versions
This shim just provides the missing OS module API that exist on the latest node.js versions. You can use it in lower node.js versions and feels like you are in latest versions
It's based on the current node.js implementations
$ npm install os-shim --save[-dev]
You simply should use the os-shim module instead of the os native node.js module
var os = require('os-shim')
os.tmpdir()
You can mutate the os-shim module object without worring about it can create side effects in the native os module object
The following API is missing in node.js 0.8.x and lower versions
Returns the operating system's default directory for temp files
Returns the endianness of the CPU. Possible values are "BE" or "LE"
A constant defining the appropriate End-of-line marker for the operating system
Returns the operating system platform
Returns the operating system CPU architecture
Instead of a formal styleguide, take care to maintain the existing coding style.
Add unit tests for any new or changed functionality
Clone the repository
$ git clone https://github.com/adesisnetlife/node-os-shim.git && cd node-os-shim
Install dependencies
$ npm install
Run tests
$ make test
2013-12-11
2013-12-11
os.networkInterfaces() shim methodDo you miss something? Open an issue or make a PR!
Copyright (c) 2013 Adesis Netlife S.L and contributors
Released under MIT license
FAQs
Native OS module API shim for older node.js versions
The npm package os-shim receives a total of 530,548 weekly downloads. As such, os-shim popularity was classified as popular.
We found that os-shim 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.