We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87b38f5 commit 5bdc1afCopy full SHA for 5bdc1af
examples/browser/index.html
@@ -0,0 +1,14 @@
1
+<!DOCTYPE html>
2
+<html>
3
+ <head>
4
+ <title>CloudEvent Example</title>
5
+ <script src="../../_bundles/cloudevents-sdk.js"></script>
6
+ <script>
7
+ const ce = new CloudEvent();
8
+ console.log(ce);
9
+ </script>
10
+ </head>
11
+ <body>
12
+ Hello
13
+ </body>
14
+</html>
examples/websocket/client.js
@@ -6,7 +6,7 @@ const WebSocket = require("ws");
const got = require("got");
const api = "https://api.openweathermap.org/data/2.5/weather";
-const key = "506e9b3eef5b37d0bc745a5c9529788d";
+const key = "ADD YOUR OPEN WEATHER MAP API KEY HERE";
const ws = new WebSocket("ws://localhost:8080");
const rl = readline.createInterface({
0 commit comments