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

Commit 4bb05be

Browse files
sericaiadignifiedquire
authored andcommitted
docs(readme): fix typos
1 parent 38603de commit 4bb05be

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ The CLI is available by using the command `jsipfs` in your terminal. This is ali
137137

138138
### Use in the browser with browserify, webpack or any bundler
139139

140-
Simply require it as you would do for Node.js, but when transpiling+minifying with your bundler, make sure to swap `zlib` with a full replacement for the browser: `zlib: 'browserify-zlib-next'`. We have submited PR's to browserify and WebPack to make this as part of the standard node libraries that are transpiled, you can follow this development in [browserify](https://github.com/substack/node-browserify/issues/1672), [webpack](https://github.com/webpack/node-libs-browser/issues/51).
140+
Simply require it as you would do for Node.js, but when transpiling+minifying with your bundler, make sure to swap `zlib` with a full replacement for the browser: `zlib: 'browserify-zlib-next'`. We have submitted PR's to browserify and WebPack to make this as part of the standard node libraries that are transpiled, you can follow this development in [browserify](https://github.com/substack/node-browserify/issues/1672), [webpack](https://github.com/webpack/node-libs-browser/issues/51).
141141

142142
You can also find examples of how to do this bundling at: `https://github.com/ipfs/js-ipfs/tree/master/examples`
143143

@@ -151,18 +151,18 @@ The last published version of the package become [available for download](https:
151151

152152

153153
```html
154-
<!-- loading the minified version -->
154+
<!-- loading the minified version -->
155155
<script src="https://unpkg.com/ipfs/dist/index.min.js"></script>
156156

157-
<!-- loading the human-readable (not minified) version -->
157+
<!-- loading the human-readable (not minified) version -->
158158
<script src="https://unpkg.com/ipfs/dist/index.js"></script>
159159
```
160160

161161
## Usage
162162

163163
### CLI
164164

165-
The `jsipfs` CLI, available when `js-ipfs` is installed globably, follows(should, it is a WIP) the same interface defined by `go-ipfs`, you can always use the `help` command for help menus.
165+
The `jsipfs` CLI, available when `js-ipfs` is installed globally, follows(should, it is a WIP) the same interface defined by `go-ipfs`, you can always use the `help` command for help menus.
166166

167167
```sh
168168
# Install js-ipfs globally
@@ -285,7 +285,7 @@ Every IPFS instance also exposes the libp2p API at `ipfs.libp2p`. The formal int
285285
286286
## Development
287287
288-
### Clone and install dependnecies
288+
### Clone and install dependencies
289289
290290
```sh
291291
> git clone https://github.com/ipfs/js-ipfs.git
@@ -297,7 +297,7 @@ Every IPFS instance also exposes the libp2p API at `ipfs.libp2p`. The formal int
297297
298298
```sh
299299
# run all the unit tsts
300-
> npm test
300+
> npm test
301301

302302
# run just IPFS tests in Node.js
303303
> npm run test:unit:node:core
@@ -319,7 +319,7 @@ Every IPFS instance also exposes the libp2p API at `ipfs.libp2p`. The formal int
319319
320320
```sh
321321
# run all the interop tsts
322-
> npm run test:interop
322+
> npm run test:interop
323323

324324
# run just IPFS interop tests in Node.js using one go-ipfs daemon and one js-ipfs daemon
325325
> npm run test:interop:node
@@ -332,7 +332,7 @@ Every IPFS instance also exposes the libp2p API at `ipfs.libp2p`. The formal int
332332
333333
```sh
334334
# run all the interop tsts
335-
> npm run test:benchmark
335+
> npm run test:benchmark
336336

337337
# run just IPFS benchmarks in Node.js
338338
> npm run test:benchmark:node
@@ -373,11 +373,11 @@ Every IPFS instance also exposes the libp2p API at `ipfs.libp2p`. The formal int
373373
> tree src -L 2
374374
src # Main source code folder
375375
├── cli # Implementation of the IPFS CLI
376-
   └── ...
376+
└── ...
377377
├── http-api # The HTTP-API implementation of IPFS as defined by http-api-spec
378378
├── core # IPFS implementation, the core (what gets loaded in browser)
379-
   ├── components # Each of IPFS subcomponent
380-
   └── ...
379+
├── components # Each of IPFS subcomponent
380+
└── ...
381381
└── ...
382382
```
383383

0 commit comments

Comments
 (0)