Skip to content

Commit d088b32

Browse files
Fixed ASCII art in WHATWG uri post, added desc. to WebSocket post.
1 parent 8c2ffc0 commit d088b32

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

blog/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en-us">
33

44
<head>
5-
<meta name="generator" content="Hugo 0.26" />
5+
<meta name="generator" content="Hugo 0.27.1" />
66
<meta http-equiv="content-type" content="text/html; charset=utf-8">
77
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
88
<title>The Node Beginner Blog - The Node Beginner Blog</title>

blog/post/nodejs-tutorial-how-to-work-with-websockets/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<meta property="og:image:secure_url" content='https://www.nodebeginner.org/blog/images/nodejs-tutorial-super-fast-web-applications-with-the-websocket-protocol.png'>
2525
<meta property="og:image:width" content="1200">
2626
<meta property="og:image:height" content="630">
27-
<meta property="og:description" content='Your regularly updated tutorial resource for all things Node.js.'>
27+
<meta property="og:description" content='How to use WebSocket connections for bidirectional and real-time Node.js apps.'>
2828

2929

3030
<link rel="stylesheet" href="https://www.nodebeginner.org/blog/css/slim.css">

blog/post/nodejs-tutorial-whatwg-url-parser/index.html

+9-9
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,15 @@ <h2 class="post-title"><a href="https://www.nodebeginner.org/blog/post/nodejs-tu
7676

7777
<p>Here is an overview of all the different parts of an URL and how the according <code>URL</code> object attribute is named:</p>
7878

79-
<pre><code>&quot; https: // user : pass @ sub.host.com : 8080 /p/a/t/h ? query=string #hash &quot;
80-
│ │ │ │ hostname │ port │ │ │ │
81-
│ │ │ ├──────────────┴──────┤ │ │ │
82-
│ protocol │ │ usernamepassword │ host │ │ │ │
83-
├──────────┴──┼──────────┴──────────┼─────────────────────┤ │ │ │
84-
│ origin │ │ origin │ pathname │ search │ hash │
85-
├─────────────┴─────────────────────┴─────────────────────┴──────────┴────────────────┴───────┤
86-
href
87-
└─────────────────────────────────────────────────────────────────────────────────────────────
79+
<pre><code>&quot; https: // user : pass @ sub.host.com : 80 /p/a/t/h ? query=string #hash &quot;
80+
│ │ │ │ │ hostname │port│ │ │ │
81+
│ │ │ user-│ pass-├──────────────┴────┤ │ │ │
82+
│ protocol │ │ nameword │ host │ │ │ │
83+
├──────────┴──┼──────┴─────────────────────────┤ │ │ │
84+
│ origin │ │ origin │ pathname │ search │ hash │
85+
├─────────────┴────────────────────────────────┴──────────┴────────────────┴───────┤
86+
│ href │
87+
└───────────────────────────────────────────────────────────────────────────────────┘
8888
</code></pre>
8989

9090
<p>The <code>URL</code> object representation of a URL can also be used to change those parts:</p>

0 commit comments

Comments
 (0)