
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
cardano-addresses
Advanced tools
- š¦ [NPM Package](https://www.npmjs.com/package/cardano-addresses) - š [API Documentation](https://input-output-hk.github.io/cardano-addresses/typescript/) - š [Web Demo](https://input-output-hk.github.io/cardano-addresses/demo/) - Ī» [Haskell Library](
This is a Typescript (or Javascript) version of the
cardano-addresses
API.
For the time being, this module is experimental, and exposes only a subset of the functionality of the Haskell API. We would like to increase the TypeScript binding's coverage of the Haskell API in future, as needs arise.
This package comprises of four parts:
A GHCJS build of the
cardano-addresses
library.
An emscripten build of the
libsodium crypto library,
supported by the cardano-addresses-jsbits
package.
A Cabal package cardano-addresses-jsapi
containing GHCJS foreign exports for translating Javascript
function calls and values into Haskell function calls and values,
and vice-versa.
An NPM package cardano-addresses
containing both
CommonJS and EcmaScript modules written in TypeScript, which thinly
wraps the GHCJS foreign exports in order to make a proper API.
Start a nix-shell
in this directory (not the top-level) and run:
$ cd jsapi
$ nix-shell
[nix-shell:~/iohk/cardano-addresses/jsapi]$ npm install && npm run build
...
[nix-shell:~/iohk/cardano-addresses/jsapi]$ npm run test
Behind the scenes, this will use Nix to make the ghcjs
build of the cardano-addresses
library. The path to this Javascript file is stored in the $CARDANO_ADDRESSES_JS
environment variable.
To try it out run nix-shell
from the repo top-level directory:
$ nix-shell
[nix-shell:~/iohk/cardano-addresses]$ js-unknown-ghcjs-cabal build cardano-addresses-jsapi:jsapi-test
[nix-shell:~/iohk/cardano-addresses]$ node dist-newstyle/build/js-ghcjs/ghcjs-8.10.4/cardano-addresses-jsapi-3.5.0/t/jsapi-test/build/jsapi-test/jsapi-test.jsexe/all.js
That test initializes the api from a JS function that is called from Main.hs
. To build .js
file that might be easier to use from a JS app run:
$ nix-build jsapi/default.nix -A cardano-addresses-js
/nix/store/dw0xwvjvwac68i2a4dkkpx4mw8yji9z8-cardano-addresses-js-3.5.0
$ tree ./result
./result
āāā cardano-addresses-jsapi.cjs.js
āāā cardano-addresses-jsapi.js
This replaces the regular runmain.js
with jsapi/glue/runmain.js
. That exposes a single function you can call and pass in a continuation.
To initialize, call the runCardanoAddressesApi
with a continuation that like the one in jsapi/glue/test.js
. You will be passed api
and cleanup
.
inspectAddress
API, instead of strings which must be parsed.nodejs
where registered event handlers remain after API cleanup, preventing the nodejs
runtime from exiting.For better or worse, this is based on the TSDX template. The TSDX standard documentation follows...
To run TSDX, use:
npm start # or yarn start
This builds to /dist
and runs the project in watch mode so any edits you save inside src
causes a rebuild to /dist
.
To do a one-off build, use npm run build
or yarn build
.
To run tests, use npm test
or yarn test
.
Code quality is set up for you with prettier
, and lint-staged
. Adjust the respective fields in package.json
accordingly.
Jest tests are set up to run with npm test
or yarn test
.
size-limit
is set up to calculate the real cost of your library with npm run size
and visualize the bundle with npm run analyze
.
TSDX uses Rollup as a bundler and generates multiple rollup configs for various module formats and build settings. See Optimizations for details.
tsconfig.json
is set up to interpret dom
and esnext
types, as well as react
for jsx
. Adjust according to your needs.
Two actions are added by default:
tsdx-build
which installs deps w/ cache, lints, tests, and builds on all pushes against a Node and OS matrixtsdx-size
which comments cost comparison of your library on every pull request using size-limit
Please see the main tsdx
optimizations docs. In particular, know that you can take advantage of development-only optimizations:
// ./types/index.d.ts
declare var __DEV__: boolean;
// inside your code...
if (__DEV__) {
console.log('foo');
}
You can also choose to install and use invariant and warning functions.
CJS, ESModules, and UMD module formats are supported.
The appropriate paths are configured in package.json
and dist/index.js
accordingly. Please report if any issues are found.
TSDX recommend using np.
[3.12.0] - 2022-08-17
FAQs
- š¦ [NPM Package](https://www.npmjs.com/package/cardano-addresses) - š [API Documentation](https://input-output-hk.github.io/cardano-addresses/typescript/) - š [Web Demo](https://input-output-hk.github.io/cardano-addresses/demo/) - Ī» [Haskell Library](
The npm package cardano-addresses receives a total of 171 weekly downloads. As such, cardano-addresses popularity was classified as not popular.
We found that cardano-addresses demonstrated a not healthy version release cadence and project activity because the last version was released a year ago.Ā It has 2 open source maintainers 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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.