Skip to content

Commit

Permalink
Updated README.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Dec 15, 2019
1 parent 184c459 commit e809ead
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
The Ethers Project
==================

**EXPERIMENTAL!!!**
**EXPERIMENTAL**

This is just a development version to experiment with lerna.
This branch is the next release of ethers.js, which should
be promoted to the official release shortly.

**Do NOT use**
I would recommend it for most new projects and personally use
it for my own projects.

The [new documentation](https://docs-beta.ethers.io) is still a
bit sparse, but is coming along as well and will be complete
before the promotion to master.


Installing
Expand All @@ -17,10 +23,18 @@ Installing
/home/ricmoo/some_project> npm install --save ethers@next
```

**browser**
**browser (UMD)**

```
<script src="https://cdn.ethers.io/lib/ethers-5.0.umd.min.js" type="text/javasctipt">
</script>
```

**browser (ESM)**

```
<script src="https://cdn.ethers.io/lib/ethers-5.0.min.js" type="text/javasctipt">
<script type="module">
import { ethers } from "https://cdn.ethers.io/lib/ethers-5.0.umd.min.js";
</script>
```

Expand Down

0 comments on commit e809ead

Please sign in to comment.