Before applying the changefeeds in our app with the RethinkDB client driver, let's use the Data Explorer from the Administration UI again at localhost:8080/#dataexplorer to see the real-time feeds in real time on the screen:
- Paste in the following ReQL query and click the Run button:
r.db('nuxtdb').table('user').changes()
You should see the following information on your browser screen:
Listening for events...
Waiting for more results
- Open another tab on your browser and point it to localhost:8080/#dataexplorer. Now, you have two data explorers. Drag one out from the browser tab so that you can place them side by side. Then, insert the new documents into the user table from one of the data explorers:
r.db('nuxtdb').table('user').insert([
{ name: "Richard Roe", slug: "richard" },
{ name: "Marry Moe", slug: "marry" }
])
You should get the following result:
{
...