Skip to content

Commit bab2446

Browse files
author
Dekel Barzilay
committed
Updated README.md file
1 parent 9616c2f commit bab2446

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,19 @@
88

99
Distribute FeathersJS apps over the network with inter-service communication using HTTP protocol.
1010

11+
### Install
12+
13+
```bash
14+
npm install --save feathers-http-distributed
15+
```
16+
1117
### Init
1218

1319
```js
20+
const feathers = require('@feathersjs/feathers');
1421
const distributed = require('feathers-http-distributed');
15-
const app = express(feathers());
22+
23+
const app = feathers();
1624

1725
app.configure(distributed({}));
1826
```

0 commit comments

Comments
 (0)