
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

- TypeScript Error Fixed.
const ms = require("basic-ms");
//Time To Ms
ms("1s"); //1000
ms("1m"); //60000
ms("1h"); //3600000
ms("1d"); //86400000
ms("1w"); //604800016
ms("1mo"); //2629800000
ms("1y"); //31557600000
//Ms To Time (Long = false)
ms(1, { long: false }); //1ms
ms(1000, { long: false }); //1s
ms(60000), { long: false }; //1m
ms(3600000, { long: false }); //1h
ms(86400000, { long: false }); //1d
ms(604800016, { long: false }); //1w
ms(2629800000, { long: false }); //1mo
ms(31557600000, { long: false }); //1y
//Ms To Time (Long = true)
ms(1, { long: true }); //milliseconds
ms(1000, { long: true }); //1seconds
ms(60000), { long: true }; //1minutes
ms(3600000, { long: true }); //1hours
ms(86400000, { long: true }); //1days
ms(604800016, { long: true }); //1weeks
ms(2629800000, { long: true }); //1months
ms(31557600000, { long: true }); //1years
FAQs
Easy MS Module
We found that basic-ms 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.