
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
convert-size
Advanced tools
convert-size is a package to convert a size with bytes to units such as KB MB TB
this package is now a mirror of to a bigger package called convert-pro only convert.bytes this means that this package will have exactly the same api as convert.bytes in convert-pro
but DON'T WORRY IT WILL BE BACKWARDS COMPATIBLE
IT SHOULD WORK JUST FINE
if you have any issue or PR do it in convert-pro's github repo NOT in "convert-size"'s
// on node (commonjs)
const { default: convertSize } = require("convert-size");
// or (es6)
import convertSize from "convert-size";
// on deno (replace version with current version)
import convertSize from "https://x.nest.land/convert-size@version/mod.ts";
// or
import convertSize from "https://deno.land/x/convert_size@version/mod.ts";
convertSize(1000); // => 1 KB
convertSize(1000 * 1000); // => 1 MB
convertSize("1 MB"); // => 1000000
convertSize("1 GB", "MB"); // => 1000
convertSize(1000000, "KB"); // => 1000
convertSize("1 mb", "GB", { stringify: true }); // => 0.001 GB
// convert multiple units
convertSize("10 kb 1 mb"); // => 1001000
convertSize("10 kib 1 mb"); // => 1001024
convertSize("10 kib 1 mb", "kb"); // => 1001.024
// to know more about option read the options part below
convertSize(1000 * 1000, {
accuracy: 0,
shortcut: false,
}); // => 1 Kilo Byte
this options is the accuracy of the size or how many digits are there after the dot
example:
import { convertSize } from "convert-size";
convertSize(1024, { accuracy: 0 }); // => 1 KB
this option tels the function to use the shortcuts or the words
example:
import { convertSize } from "convert-size";
convertSize(1024, { shortcut: false }); // => 1.00 Kilo Byte
this option tels the function to use lower case letters
import { convertSize } from "convert-size";
convertSize(1024, { lowerCase: true }); // => 1 kb
Copyright (c) 2019 AliBasicCoder
FAQs
a package to convert size from bytes to kb mb and so on
The npm package convert-size receives a total of 1,442 weekly downloads. As such, convert-size popularity was classified as popular.
We found that convert-size 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.