solana/web3.js/README.md

1.7 KiB

Build status Coverage Status npm

Solana JavaScript API

This is the Solana Javascript API built on the Solana JSON RPC API (TODO: add link).

Latest API Documentation

Installation

Yarn

$ yarn add @solana/web3.js

npm

$ npm install --save @solana/web3.js

Browser bundle

<script src="https://github.com/solana-labs/solana-web3.js/releases/download/v0.0.3/solanaWeb3.min.js"></script>

Usage

Javascript

const solanaWeb3 = require('@solana/web3.js');
console.log(solanaWeb3);

ES6

import solanaWeb3 from '@solana/web3.js';
console.log(solanaWeb3);

Browser bundle

// `solanaWeb3` is provided in the global namespace by the `solanaWeb3.min.js` script bundle.
console.log(solanaWeb3);

Examples

See the examples/ directory

Releases

Releases are available on Github and npmjs.com.

Each Github release features a tarball containing the API documentation release and a minified version of the module suitable for direct use in a browser environment (<script> tag)