Getting Started¶
The ethers.js library is a compact and complete JavaScript library for Ethereum.
Installing in Node.js¶
Install the ethers.js library from your project directory:
/home/ricmoo/my-project> npm install --save ethers
Importing¶
var ethers = require('ethers');
const ethers = require('ethers');
import { ethers } from 'ethers';
Including in Web Applications¶
For security purposes, it is usually best to place a copy of this script on the application’s server, but for a quick prototype using the Ethers CDN (content distribution network) should suffice.
<!-- This exposes the library as a global variable: ethers -->
<script src="https://cdn.ethers.io/scripts/ethers-v4.min.js"
charset="utf-8"
type="text/javascript">
</script>