Skip to content

Commit

Permalink
Latest build
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelSel committed Oct 24, 2021
1 parent 4cff70d commit e0dccb6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,22 @@ To install npm (its dependencies)
npm i edo.js
```





Similarly, you can do any type of import.

#### Import Library
Client-Side
CDN source example - https://www.jsdelivr.com/package/npm/edo.js?version=1.2.14&path=dist
```xhtml
<script src="edo.js"></script>
<script src="https://cdn.jsdelivr.net/npm/edo.js@1.2.14/dist/edo.js"></script>```
```

Server-Side
```Javascript
const EDO = require("./edo").EDO
// NOTE: here no relative path so node will use the edojs installed from NPM
const EDO = require("edo.js").EDO;
```

#### Basic Usage
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "edo.js",
"version": "1.2.15",
"version": "1.2.16",
"description": "A set of functions for manipulating musical pitches within a given EDO",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit e0dccb6

Please sign in to comment.