doc: update urls
This commit is contained in:
parent
15dffc8ada
commit
7b58a69122
|
@ -18,15 +18,13 @@ only knowing their Ethereum Address.
|
||||||
This protocol has been created to demonstrated how encryption and signature could be added to message
|
This protocol has been created to demonstrated how encryption and signature could be added to message
|
||||||
sent over the Waku v2 network.
|
sent over the Waku v2 network.
|
||||||
|
|
||||||
The `master` branch's HEAD is deployed at https://js-waku.wakuconnect.dev/examples/eth-pm/.
|
The `master` branch's HEAD is deployed at https://examples.waku.org/eth-pm/.
|
||||||
|
|
||||||
To run a development version locally, do:
|
To run a development version locally, do:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
git clone https://github.com/status-im/js-waku/ ; cd js-waku
|
git clone https://github.com/waku-org/js-waku-examples
|
||||||
npm install # Install dependencies for js-waku
|
cd eth-pm
|
||||||
npm run build # Build js-waku
|
npm install
|
||||||
cd examples/eth-pm
|
npm run start
|
||||||
npm install # Install dependencies for the web app
|
|
||||||
npm run start # Start development server to serve the web app on http://localhost:3000/js-waku/eth-pm
|
|
||||||
```
|
```
|
||||||
|
|
|
@ -10,4 +10,4 @@ This example uses Waku Filter to listen to messages and Waku Light Push to send
|
||||||
|
|
||||||
To test the example, simply download the `index.html` file from this folder and open it in a browser.
|
To test the example, simply download the `index.html` file from this folder and open it in a browser.
|
||||||
|
|
||||||
The `master` branch's HEAD is deployed at https://js.waku.org/light-js/.
|
The `master` branch's HEAD is deployed at https://examples.waku.org/light-js/.
|
||||||
|
|
|
@ -10,15 +10,15 @@
|
||||||
|
|
||||||
A barebones messaging app to illustrate the [Angular Relay guide](https://docs.wakuconnect.dev/docs/guides/10_angular_relay/).
|
A barebones messaging app to illustrate the [Angular Relay guide](https://docs.wakuconnect.dev/docs/guides/10_angular_relay/).
|
||||||
|
|
||||||
|
The `master` branch's HEAD is deployed at https://examples.waku.org/relay-angular-chat/.
|
||||||
|
|
||||||
To run a development version locally, do:
|
To run a development version locally, do:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
git clone https://github.com/status-im/js-waku/ ; cd js-waku
|
git clone https://github.com/waku-org/js-waku-examples
|
||||||
npm install # Install dependencies for js-waku
|
cd relay-angular-chat
|
||||||
npm run build # Build js-waku
|
npm install
|
||||||
cd examples/relay-reactjs-chat
|
npm start
|
||||||
yarn # Install dependencies for the web app
|
|
||||||
yarn start # Start development server to serve the web app on http://localhost:4200/
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Known issues
|
### Known issues
|
||||||
|
|
|
@ -10,4 +10,4 @@ This example uses Waku Relay to send and receive simple text messages.
|
||||||
|
|
||||||
To test the example, simply download the `index.html` file from this folder and open it in a browser.
|
To test the example, simply download the `index.html` file from this folder and open it in a browser.
|
||||||
|
|
||||||
The `master` branch's HEAD is deployed at https://js-waku.wakuconnect.dev/examples/relay-js/.
|
The `master` branch's HEAD is deployed at https://examples.waku.org/relay-js/.
|
||||||
|
|
|
@ -10,11 +10,13 @@
|
||||||
|
|
||||||
A barebone chat app to illustrate the [ReactJS Relay guide](https://docs.wakuconnect.dev/docs/guides/07_reactjs_relay/).
|
A barebone chat app to illustrate the [ReactJS Relay guide](https://docs.wakuconnect.dev/docs/guides/07_reactjs_relay/).
|
||||||
|
|
||||||
|
The `master` branch's HEAD is deployed at https://examples.waku.org/relay-reactjs-chat/.
|
||||||
|
|
||||||
To run a development version locally, do:
|
To run a development version locally, do:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
git clone https://github.com/waku-org/js-waku-examples/
|
git clone https://github.com/waku-org/js-waku-examples
|
||||||
cd js-waku-examples/relay-reactjs-chat
|
cd relay-reactjs-chat
|
||||||
npm install
|
npm install
|
||||||
npm run start
|
npm run start
|
||||||
```
|
```
|
||||||
|
|
|
@ -10,4 +10,4 @@ This example uses Waku Store to retrieve the latest ping relay message (used for
|
||||||
|
|
||||||
To test the example, simply download the `index.html` file from this folder and open it in a browser.
|
To test the example, simply download the `index.html` file from this folder and open it in a browser.
|
||||||
|
|
||||||
The `master` branch's HEAD is deployed at https://js-waku.wakuconnect.dev/examples/store-js/.
|
The `master` branch's HEAD is deployed at https://examples.waku.org/store-js/.
|
||||||
|
|
|
@ -9,15 +9,13 @@
|
||||||
A simple app that retrieves chat messages using [Waku Store](https://rfc.vac.dev/spec/13/)
|
A simple app that retrieves chat messages using [Waku Store](https://rfc.vac.dev/spec/13/)
|
||||||
to illustrate the [Retrieve Messages Using Waku Store With ReactJS guide](https://docs.wakuconnect.dev/docs/guides/08_reactjs_store/).
|
to illustrate the [Retrieve Messages Using Waku Store With ReactJS guide](https://docs.wakuconnect.dev/docs/guides/08_reactjs_store/).
|
||||||
|
|
||||||
The `master` branch's HEAD is deployed at https://js-waku.wakuconnect.dev/examples/store-reactjs-chat/.
|
The `master` branch's HEAD is deployed at https://examples.waku.org/store-reactjs-chat/.
|
||||||
|
|
||||||
To run a development version locally, do:
|
To run a development version locally, do:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
git clone https://github.com/status-im/js-waku/ ; cd js-waku
|
git clone https://github.com/waku-org/js-waku-examples
|
||||||
npm install # Install dependencies for js-waku
|
cd store-reactjs-chat
|
||||||
npm run build # Build js-waku
|
npm install
|
||||||
cd examples/store-reactjs-chat
|
npm run start
|
||||||
npm install # Install dependencies for the web app
|
|
||||||
npm run start # Start development server to serve the web app on http://localhost:3000/
|
|
||||||
```
|
```
|
||||||
|
|
|
@ -11,17 +11,15 @@
|
||||||
|
|
||||||
A ReactJS chat app is provided as a showcase of the library used in the browser.
|
A ReactJS chat app is provided as a showcase of the library used in the browser.
|
||||||
It implements [Waku v2 Toy Chat](https://rfc.vac.dev/spec/22/) protocol.
|
It implements [Waku v2 Toy Chat](https://rfc.vac.dev/spec/22/) protocol.
|
||||||
A deployed version is available at https://js-waku.wakuconnect.dev/examples/web-chat/.
|
A deployed version is available at https://examples.waku.org/web-chat/.
|
||||||
|
|
||||||
To run a development version locally, do:
|
To run a development version locally, do:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
git clone https://github.com/status-im/js-waku/ ; cd js-waku
|
git clone https://github.com/waku-org/js-waku-examples
|
||||||
npm install # Install dependencies for js-waku
|
cd web-chat
|
||||||
npm run build # Build js-waku
|
npm install
|
||||||
cd examples/web-chat
|
npm run start
|
||||||
npm install # Install dependencies for the web app
|
|
||||||
npm run start # Start development server to serve the web app on http://localhost:3000/js-waku
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Use `/help` to see the available commands.
|
Use `/help` to see the available commands.
|
||||||
|
|
Loading…
Reference in New Issue