
Security News
Feross on the 10 Minutes or Less Podcast: Nobody Reads the Code
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.
use it like this i got nothing else to say
const FanTime = require('fan-time'); // or 'fan-time' if installed via npm
// Create a FanTime instance with 2-second polling interval
const fan = new FanTime({ interval: 2000 });
(async () => {
console.log('--- ONE-TIME FETCH ---');
// Fetch raw data
const rawData = await fan.fetchRaw();
console.log('Raw fan data:', rawData);
// Get individual fields
const time = await fan.getTime();
const rpm = await fan.getRPM();
const pulsesPerSecond = await fan.getPulsesPerSecond();
console.log('Fan Time:', time);
console.log('RPM:', rpm);
console.log('Pulses/s:', pulsesPerSecond);
console.log('\n--- START POLLING ---');
// Start polling with a callback
fan.startPolling(data => {
console.log('Updated fan data:', data);
});
// Stop polling after 10 seconds
setTimeout(() => {
fan.stopPolling();
console.log('Polling stopped.');
}, 10000);
})();
FAQs
Fetch and monitor fan.voidium.uk fan time and stats
We found that fan-time demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.