|
9 | 9 | <meta charset=utf-8> |
10 | 10 |
|
11 | 11 | <title> |
12 | | - How to Set Up a nodejs http server |
| 12 | + How To Set Up A Basic HTTP Server In Node.js |
13 | 13 | </title> |
14 | 14 |
|
15 | 15 | <meta name=description content='Learn how to set up a basic HTTP server in Node.js with this hands-on tutorial featuring an interactive, editable code demo you can run in your browser.'> |
|
36 | 36 |
|
37 | 37 | </script> |
38 | 38 |
|
| 39 | + <meta property="og:title" content="How To Set Up A Basic HTTP Server In Node.js ( with runnable examples )"> |
| 40 | + <meta property="og:description" content="Learn how to set up a basic HTTP server in Node.js with this hands-on tutorial featuring an interactive, editable code demo you can run in your browser."> |
| 41 | + <meta property="og:type" content="article"> |
| 42 | + <meta property="og:url" content="https://ext-code.com/blog/25-07-24/http-server/http-server.html"> |
| 43 | + <meta property="og:image" content="https://ext-code.com/blog/25-07-24/http-server/images/"> |
| 44 | + <meta property="og:site_name" content="Your Blog Name"> |
| 45 | + <meta property="article:author" content="Matthew Richards"> |
| 46 | + <meta property="article:tag" content="Node.js"> |
| 47 | + <meta property="article:tag" content="HTTPS"> |
| 48 | + <meta property="article:tag" content="Web Development"> |
| 49 | + <meta property="article:tag" content="Tutorial"> |
| 50 | + <!--https://www.opengraph.xyz/--> |
| 51 | + |
| 52 | + <meta name="twitter:card" content="summary_large_image"> |
| 53 | + <meta name="twitter:title" content="How To Set Up A Basic HTTP Server In Node.js ( with runnable examples )"> |
| 54 | + <meta name="twitter:description" content="Learn how to set up a basic HTTP server in Node.js with this hands-on tutorial featuring an interactive, editable code demo you can run in your browser."> |
| 55 | + <meta name="twitter:image" content="https://ext-code.com/blog/25-07-24/http-server/images/"> |
| 56 | + |
| 57 | + |
39 | 58 |
|
40 | 59 | <script src='https://ajaxorg.github.io/ace-builds/src-noconflict/ace.js'></script> |
41 | 60 |
|
@@ -148,6 +167,27 @@ <h4> |
148 | 167 | </div> |
149 | 168 |
|
150 | 169 |
|
| 170 | + <div class=blog-text> |
| 171 | + |
| 172 | + <h4> |
| 173 | + X509 Certificates ( HTTPS ) |
| 174 | + </h4> |
| 175 | + |
| 176 | + <p> |
| 177 | + Theres a fully comprehensive x509 certificate suite on the ext-code.com website. HTTPS certificates |
| 178 | + can be created |
| 179 | + <br> |
| 180 | + <a href='/utils/x509/generate-https-certificate/generate-https-certificate.html' target='_blank'> |
| 181 | + generate https certificates |
| 182 | + <span class=link-domain> |
| 183 | + ext-code.com |
| 184 | + </span> |
| 185 | + </a> |
| 186 | + </p> |
| 187 | + |
| 188 | + </div> |
| 189 | + |
| 190 | + |
151 | 191 | <div id=simple-root class=example-root> |
152 | 192 |
|
153 | 193 | <div class=blog-text> |
|
0 commit comments