🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

base58-js

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

base58-js - npm Package Versions

2

3.0.3

Diff
pur3miish
published 3.0.3 •

Changelog

Source

3.0.3

Patch

  • Fixed Corrected TypeScript declaration files (.d.ts) to export functions properly without importing .d.ts files directly.

  • Updated index.d.ts to re-export named functions from implementation .js files, ensuring compatibility with TypeScript's module resolution and eliminating errors like TS2846 and TS1362.

  • Changed Improved package.json exports and types fields to explicitly map .js files to their corresponding .d.ts typings for better editor support and module resolution.

  • Enhanced README with detailed usage examples, environment requirements, export info, TypeScript support, and a clear explanation of tree-shaking implications.

  • This fixes the issue described in #4.

pur3miish
published 3.0.2 •

Changelog

Source

3.0.2

  • Added support for both named exports and explicit .js paths for binary_to_base58 and base58_to_binary modules.
  • Consumers can now import modules either without the .js extension or with it directly:

Without .js:

import binaryToBase58 from "base58-js/binary_to_base58";

With .js:

import binaryToBase58 from "base58-js/binary_to_base58.js";
pur3miish
published 3.0.0 •

Changelog

Source

3.0.0

Major

  • TypeScript declaration files (.d.ts) have been added for all public modules.
  • Support for node >=14.0.0 & npm >=7.0.0.
  • Imports now favours dropping the file extension.
  • Refined exports Field: Simplified the module exports by removing the .mjs and .js extensions from the paths. Now, users can import modules without needing to specify the file extension.
pur3miish
published 2.0.0 •

Changelog

Source

2.0.0

Major

  • Upgraded to ESM as CJS is superseded.

Minor

pur3miish
published 2.0.0-beta.0 •
pur3miish
published 1.0.5 •

Changelog

Source

1.0.5

Patch

  • Fixes #3
pur3miish
published 1.0.4 •

Changelog

Source

1.0.4

Patch

  • Changelog fixes.

Patch

  • Deprecation warning not actually fixed... again 😅.

Patch

  • Changelog updates.
pur3miish
published 1.0.3 •
pur3miish
published 1.0.2 •

Changelog

Source

1.0.2

Patch

  • Changelog updates.
pur3miish
published 1.0.1 •

Changelog

Source

1.0.1

  • Fixes #2.
  • Dev dependency updates.
2