Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
docs(readme): replace npmcdn.com with unpkg.com
Browse files Browse the repository at this point in the history
  • Loading branch information
npmcdn-to-unpkg-bot authored and dignifiedquire committed Sep 8, 2016
1 parent fa2c807 commit def2418
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,18 +92,18 @@ var ipfs = require('ipfs');

Loading this module in a browser (using a `<script>` tag) makes the `Ipfs` object available in the global namespace.

The last published version of the package become [available for download](https://npmcdn.com/ipfs/dist/) from [npmcdn](https://npmcdn.com/) and thus you may use it as the source:
The last published version of the package become [available for download](https://unpkg.com/ipfs/dist/) from [unpkg](https://unpkg.com/) and thus you may use it as the source:

* loading the minified version

```html
<script src="https://npmcdn.com/ipfs/dist/index.min.js"></script>
<script src="https://unpkg.com/ipfs/dist/index.min.js"></script>
```

* loading the human-readable (not minified) version

```html
<script src="https://npmcdn.com/ipfs/dist/index.js"></script>
<script src="https://unpkg.com/ipfs/dist/index.js"></script>
```

## Usage
Expand Down

0 comments on commit def2418

Please sign in to comment.