mirror of
https://github.com/waku-org/waku-lab.git
synced 2025-03-02 08:20:41 +00:00
chore: update links and text
This commit is contained in:
parent
7f3b898f2c
commit
7312249133
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
This repository is dedicated for proof of concepts, examples and research done around core Waku libraries.
|
This repository is dedicated for proof of concepts, examples and research done around core Waku libraries.
|
||||||
|
|
||||||
|
Repo is hosted at https://lab.waku.org/
|
||||||
See https://examples.waku.org/ for more examples.
|
See https://examples.waku.org/ for more examples.
|
||||||
|
|
||||||
### Web Chat App
|
### Web Chat App
|
||||||
|
@ -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://examples.waku.org/light-js/.
|
The `master` branch's HEAD is deployed at https://lab.waku.org/light-js/.
|
||||||
|
@ -4,4 +4,5 @@
|
|||||||
npm install
|
npm install
|
||||||
npm start
|
npm start
|
||||||
```
|
```
|
||||||
Browse to http://localhost:8080
|
Browse to http://localhost:8080
|
||||||
|
The `master` branch's HEAD is deployed at https://lab.waku.org/noise-js/
|
||||||
|
@ -8,4 +8,6 @@ What should be done:
|
|||||||
- `STUN` server: in order not to loose benefits of peer-to-peer protocols used underneath we should find a way to be able to retrieve coordinates of a user to build `offer/answer` by not involving one `STUN` server for it;
|
- `STUN` server: in order not to loose benefits of peer-to-peer protocols used underneath we should find a way to be able to retrieve coordinates of a user to build `offer/answer` by not involving one `STUN` server for it;
|
||||||
- `TURN` server: similarly to prev point we should be able to cover a need to create WebRTC connection for users who are behind secure `NAT` and are not able to communicated just as it is.
|
- `TURN` server: similarly to prev point we should be able to cover a need to create WebRTC connection for users who are behind secure `NAT` and are not able to communicated just as it is.
|
||||||
|
|
||||||
Additional reading that explains why `STUN/TURN` is not easily removable from the equation: https://github.com/libp2p/specs/pull/497/files#diff-2cb0b0dcc282bd123b21f5a0610e8a01b516fc453b95c655cf7e16734f2f7b11R48-R53
|
Additional reading that explains why `STUN/TURN` is not easily removable from the equation: https://github.com/libp2p/specs/pull/497/files#diff-2cb0b0dcc282bd123b21f5a0610e8a01b516fc453b95c655cf7e16734f2f7b11R48-R53
|
||||||
|
|
||||||
|
The `master` branch's HEAD is deployed at https://lab.waku.org/noise-rtc/
|
||||||
|
@ -10,13 +10,13 @@
|
|||||||
|
|
||||||
A barebone messaging app to illustrate the seamless integration of `js-waku` into AngularJS.
|
A barebone messaging app to illustrate the seamless integration of `js-waku` into AngularJS.
|
||||||
|
|
||||||
The `master` branch's HEAD is deployed at https://examples.waku.org/relay-angular-chat/.
|
The `master` branch's HEAD is deployed at https://lab.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/waku-org/js-waku-examples
|
git clone https://github.com/waku-org/js-waku-examples
|
||||||
cd js-waku-examples/examples/relay-angular-chat
|
cd waku-lab/examples/relay-angular-chat
|
||||||
npm install
|
npm install
|
||||||
npm start
|
npm start
|
||||||
```
|
```
|
||||||
|
@ -9,7 +9,7 @@ This example uses WebRTC transport and Waku Relay to exchange messages.
|
|||||||
|
|
||||||
To test the example run `npm install` and then `npm start`.
|
To test the example run `npm install` and then `npm start`.
|
||||||
|
|
||||||
The `master` branch's HEAD is deployed at https://examples.waku.org/relay-direct-chat/.
|
The `master` branch's HEAD is deployed at https://lab.waku.org/relay-direct-chat/
|
||||||
|
|
||||||
### Steps to run an example:
|
### Steps to run an example:
|
||||||
1. Get a Waku node that implements `/libp2p/circuit/relay/0.2.0/hop` and `/libp2p/circuit/relay/0.2.0/stop`
|
1. Get a Waku node that implements `/libp2p/circuit/relay/0.2.0/hop` and `/libp2p/circuit/relay/0.2.0/stop`
|
||||||
|
@ -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://examples.waku.org/relay-js/.
|
The `master` branch's HEAD is deployed at https://lab.waku.org/relay-js/
|
||||||
|
@ -4,19 +4,18 @@
|
|||||||
|
|
||||||
- Group chat
|
- Group chat
|
||||||
- React/JavaScript
|
- React/JavaScript
|
||||||
- `create-react-app`/`react-scripts` 5.0.0
|
|
||||||
- Waku Relay
|
- Waku Relay
|
||||||
- Protobuf using `protobufjs`.
|
- Protobuf using `protobufjs`.
|
||||||
|
|
||||||
A barebone chat app to illustrate the seamless integration of `js-waku` into ReactJS.
|
A barebone chat app to illustrate the seamless integration of `js-waku` into ReactJS.
|
||||||
|
|
||||||
The `master` branch's HEAD is deployed at https://examples.waku.org/relay-reactjs-chat/.
|
The `master` branch's HEAD is deployed at https://lab.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/waku-lab
|
||||||
cd js-waku-examples/examples/relay-reactjs-chat
|
cd waku-lab/examples/relay-reactjs-chat
|
||||||
npm install
|
npm install
|
||||||
npm run start
|
npm run start
|
||||||
```
|
```
|
||||||
|
@ -11,13 +11,13 @@
|
|||||||
|
|
||||||
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://examples.waku.org/web-chat/.
|
A deployed version is available at https://lab.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/waku-org/js-waku-examples
|
git clone https://github.com/waku-org/waku-lab
|
||||||
cd js-waku-examples/examples/web-chat
|
cd waku-lab/examples/web-chat
|
||||||
npm install
|
npm install
|
||||||
npm run start
|
npm run start
|
||||||
```
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user