Byte Size Versions Save

Isomorphic function to convert a bytes value (e.g. 3456) to a human-readable string ('3.5 kB')

v8.1.0

2 years ago

New features since v8.0.0

  • Support extended back to Node.js v12.17
    • This is because support for exports, conditional exports and exports patterns have been retro-fitted into v12 (see the Package module history)

Upgrade notes

Users of Node.js v12.17 and above may now use the latest version (previously, you needed a minimum of node v14). There are no further changes.

v8.0.0

2 years ago

Breaking changes since v7.0.1

  • Dropped support for Node.js versions < v14

New feature: localisation

Byte-size now supports localised number formatting using your system locale by default (#9). For example, if you're in Deutschland you'll now see your native numeric formatting:

> byteSize(1000)
ByteSize { value: '1,0', unit: 'kB', long: 'kilobytes' }

Or you can set the locale manually:

> byteSize(1000, { locale: 'en-GB' })
ByteSize { value: '1.0', unit: 'kB', long: 'kilobytes' }

v7.0.0

3 years ago

Breaking changes since v6.2.0

  • Dropped support for Node.js versions < v10

Other improvements

  • The test suite is now isomorphic, run in both Node.js and the browser.

v6.2.0

4 years ago

Features added since v6.1.0

  • Added the byteSize.defaultOptions() method - see the synopsis for an explaination.
  • Added options.toStringFn to enable overriding the default toString output - also see the synopsis.

v6.1.0

4 years ago

Features added since v6.0.0

  • Added support for custom units. See the synopsis for an example.
  • Added validation: byteSize will now throw if you specify an invalid options.units value.
  • Added long unit names (e.g. kilobytes) to the output.

Other improvements

  • Improved the readme and documentation
  • More tests added
  • Refactored the code.

v6.0.0

4 years ago

Breaking changes since v5.0.1

  • Support for Node versions less than v8 has been dropped.

Upgrade advice

Users of node v8 and above can safely upgrade to byte-size v6.0.0. There have been no changes to the byte-size source code or API, only to the dev dependencies and test suite.

v5.0.0

5 years ago

Breaking changes since v4.0.4

Support for Node.js versions less than v6 has been dropped. Technically, this is not a breaking change since byte-size v5.0.0 still works with node v4 (the byte-size API and code has not changed) but future releases will be tested in node v6 and above only.

New features

This library is now compatible with Node.js, the Web and any style of module loader. See the readme for examples.

Upgrade notes

If you're using Node.js v6 or above, since there have been no API changes to byte-size you can safely upgrade to v5.0.0.

v4.0.0

5 years ago

Breaking since v3.0.0

Support was removed for versions of Node.js older than v4.0.0.

v3.0.0

7 years ago

Breaking since v2

The library no longer assumes you require a formatted string (e.g. '2.4 Kib') . It returns an object containing the raw values (e.g. { value: '1.6', unit: 'ko' } and you can format them however you please.

New feature

@adrai added support for the octet unit.