{"id":38334,"date":"2024-11-01T17:17:41","date_gmt":"2024-11-01T17:17:41","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=38334"},"modified":"2024-11-26T06:44:37","modified_gmt":"2024-11-26T06:44:37","slug":"express-%ea%b0%9c%eb%b0%9c-%ea%b0%95%ec%a2%8c-url-%ed%8c%8c%eb%9d%bc%eb%af%b8%ed%84%b0-%eb%b0%8f-%ec%bf%bc%eb%a6%ac-%ed%8c%8c%eb%9d%bc%eb%af%b8%ed%84%b0-%ec%82%ac%ec%9a%a9%ed%95%98%ea%b8%b0","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/38334\/","title":{"rendered":"Express \uac1c\ubc1c \uac15\uc88c, URL \ud30c\ub77c\ubbf8\ud130 \ubc0f \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130 \uc0ac\uc6a9\ud558\uae30"},"content":{"rendered":"<p><body><\/p>\n<p>\uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \ub54c, \ud074\ub77c\uc774\uc5b8\ud2b8\uac00 \uc11c\ubc84\uc5d0 \ub370\uc774\ud130\ub97c \uc804\ub2ec\ud558\ub294 \ubc29\ubc95\uc740 \ub9e4\uc6b0 \uc911\uc694\ud569\ub2c8\ub2e4. \ud2b9\ud788 Express.js\uc640 \uac19\uc740 Node.js \uae30\ubc18\uc758 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub97c \uc0ac\uc6a9\ud560 \ub54c, URL \ud30c\ub77c\ubbf8\ud130\uc640 \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\ub97c \ud65c\uc6a9\ud558\ub294 \ubc29\ubc95\uc744 \uc774\ud574\ud558\ub294 \uac83\uc740 \ud544\uc218\uc801\uc785\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 URL \ud30c\ub77c\ubbf8\ud130\uc640 \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\uc758 \uac1c\ub150\uacfc \ud568\uaed8 \uc0ac\uc6a9 \ubc29\ubc95\uc744 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>1. URL \ud30c\ub77c\ubbf8\ud130\ub780?<\/h2>\n<p>URL \ud30c\ub77c\ubbf8\ud130\ub294 URL \uacbd\ub85c\uc758 \uc77c\ubd80\ub85c, \ubcf4\ud1b5 \ub9ac\uc18c\uc2a4\ub97c \uc2dd\ubcc4\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \uc0ac\uc6a9\uc790\uc758 \ud504\ub85c\ud544 \uc815\ubcf4\ub97c \uc870\ud68c\ud558\uae30 \uc704\ud55c URL\uc774 <code>\/user\/123<\/code>\ub77c\uba74, <code>123<\/code>\uc740 \uc0ac\uc6a9\uc790 ID\ub97c \ub098\ud0c0\ub0b4\ub294 URL \ud30c\ub77c\ubbf8\ud130\uc785\ub2c8\ub2e4.<\/p>\n<h3>1.1 URL \ud30c\ub77c\ubbf8\ud130\uc758 \uc0ac\uc6a9 \ubc29\ubc95<\/h3>\n<p>Express\uc5d0\uc11c URL \ud30c\ub77c\ubbf8\ud130\ub97c \uc815\uc758\ud558\ub294 \ubc29\ubc95\uc740 \ub9e4\uc6b0 \uac04\ub2e8\ud569\ub2c8\ub2e4. HTTP \uc694\uccad \ub77c\uc6b0\ud2b8\uc5d0\uc11c : \uae30\ud638\ub97c \uc0ac\uc6a9\ud558\uc5ec URL \ud30c\ub77c\ubbf8\ud130\ub97c \uc124\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc544\ub798\ub294 Express\ub97c \uc0ac\uc6a9\ud558\uc5ec URL \ud30c\ub77c\ubbf8\ud130\ub97c \ucc98\ub9ac\ud558\ub294 \uac04\ub2e8\ud55c \uc608\uc81c\uc785\ub2c8\ub2e4.<\/p>\n<pre><code>const express = require('express');\nconst app = express();\nconst port = 3000;\n\napp.get('\/user\/:id', (req, res) =&gt; {\n    const userId = req.params.id; \/\/ URL \ud30c\ub77c\ubbf8\ud130 \uc811\uadfc\n    res.send(`User ID: ${userId}`);\n});\n\napp.listen(port, () =&gt; {\n    console.log(`Server is running on http:\/\/localhost:${port}`);\n});<\/code><\/pre>\n<p>\uc704 \uc608\uc81c\uc5d0\uc11c <code>\/user\/:id<\/code> \ub77c\uc6b0\ud2b8\ub294 \uc0ac\uc6a9\uc790\uc758 ID\ub97c URL \uacbd\ub85c\uc5d0\uc11c \uac00\uc838\uc635\ub2c8\ub2e4. \ud074\ub77c\uc774\uc5b8\ud2b8\uac00 <code>\/user\/123<\/code>\uc5d0 GET \uc694\uccad\uc744 \ubcf4\ub0b4\uba74, <code>req.params.id<\/code>\ub97c \ud1b5\ud574 <code>123<\/code>\uc774\ub77c\ub294 \uac12\uc744 \uc5bb\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>2. \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\ub780?<\/h2>\n<p>\ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\ub294 URL\uc758 \ucffc\ub9ac \uc2a4\ud2b8\ub9c1 \ubd80\ubd84\uc5d0 \ud3ec\ud568\ub41c \ud30c\ub77c\ubbf8\ud130\uc785\ub2c8\ub2e4. \uc77c\ubc18\uc801\uc73c\ub85c URL\uc758 \ub05d\uc5d0 \ubb3c\uc74c\ud45c(?) \ub2e4\uc74c\uc5d0 &#8220;key=value&#8221; \ud615\uc2dd\uc73c\ub85c \ucd94\uac00\ub429\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, <code>\/search?keyword=express&amp;page=1<\/code>\uc5d0\uc11c <code>keyword<\/code>\uc640 <code>page<\/code>\ub294 \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\uc785\ub2c8\ub2e4.<\/p>\n<h3>2.1 \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\uc758 \uc0ac\uc6a9 \ubc29\ubc95<\/h3>\n<p>Express\uc5d0\uc11c\ub294 \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\ub97c <code>req.query<\/code> \uac1d\uccb4\ub97c \ud1b5\ud574 \uc27d\uac8c \uc811\uadfc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub2e4\uc74c\uc740 \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\ub97c \ucc98\ub9ac\ud558\ub294 \uc608\uc81c\uc785\ub2c8\ub2e4.<\/p>\n<pre><code>app.get('\/search', (req, res) =&gt; {\n    const keyword = req.query.keyword; \/\/ \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130 \uc811\uadfc\n    const page = req.query.page || 1; \/\/ \uae30\ubcf8\uac12 \uc124\uc815\n    res.send(`Searching for: ${keyword}, Page: ${page}`);\n});<\/code><\/pre>\n<p>\uc704 \uc608\uc81c\ub97c \ud1b5\ud574 <code>\/search?keyword=express&amp;page=2<\/code>\uc5d0 GET \uc694\uccad\uc744 \ud558\uba74, <code>req.query.keyword<\/code>\uc640 <code>req.query.page<\/code>\ub97c \uc0ac\uc6a9\ud558\uc5ec \uac01\uac01 <code>express<\/code>\uc640 <code>2<\/code>\uc758 \uac12\uc744 \uc5bb\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>3. URL \ud30c\ub77c\ubbf8\ud130\uc640 \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\uc758 \ucc28\uc774\uc810<\/h2>\n<ul>\n<li><strong>URL \ud30c\ub77c\ubbf8\ud130:<\/strong> URL \uacbd\ub85c\uc758 \uc77c\ubd80\ub85c, \uc8fc\ub85c \ub9ac\uc18c\uc2a4\ub97c \uc2dd\ubcc4\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4.<\/li>\n<li><strong>\ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130:<\/strong> URL\uc758 \ucffc\ub9ac \uc2a4\ud2b8\ub9c1 \ubd80\ubd84\uc5d0 \ud3ec\ud568\ub418\uba70, \ucd94\uac00\uc801\uc778 \ub370\uc774\ud130\ub098 \uc635\uc158\uc744 \uc804\ub2ec\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4.<\/li>\n<\/ul>\n<h2>4. \ubcf5\ud569\uc801\uc778 \uc0ac\uc6a9 \uc0ac\ub840<\/h2>\n<p>\uc2e4\uc81c \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0\uc11c\ub294 URL \ud30c\ub77c\ubbf8\ud130\uc640 \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\ub97c \ud568\uaed8 \uc0ac\uc6a9\ud558\ub294 \uacbd\uc6b0\uac00 \ub9ce\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \ud2b9\uc815 \uc0ac\uc6a9\uc790 ID\uc5d0 \ub300\ud55c \uac8c\uc2dc\ubb3c \ubaa9\ub85d\uc744 \uc870\ud68c\ud558\ub294 API\ub97c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code>app.get('\/user\/:id\/posts', (req, res) =&gt; {\n    const userId = req.params.id;\n    const page = req.query.page || 1; \/\/ \uae30\ubcf8\uac12 \uc124\uc815\n    res.send(`Getting posts for user: ${userId}, Page: ${page}`);\n});<\/code><\/pre>\n<p>\uc704 \ucf54\ub4dc\ub294 \ud2b9\uc815 \uc0ac\uc6a9\uc790(<code>userId<\/code>)\uc758 \uac8c\uc2dc\ubb3c \ubaa9\ub85d\uc744 \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\ub97c \ud1b5\ud574 \ud398\uc774\uc9c0 \ub118\ubc84(<code>page<\/code>)\uc640 \ud568\uaed8 \uac00\uc838\uc624\ub294 \uc608\uc2dc\uc785\ub2c8\ub2e4.<\/p>\n<h2>5. \uc2e4\uc2b5 \ud504\ub85c\uc81d\ud2b8<\/h2>\n<p>\uc774\uc81c\uae4c\uc9c0\uc758 \ub0b4\uc6a9\uc744 \uc885\ud569\ud558\uc5ec, \uc791\uc740 \uc2e4\uc2b5 \ud504\ub85c\uc81d\ud2b8\ub97c \ub9cc\ub4e4\uc5b4 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \uc774 \ud504\ub85c\uc81d\ud2b8\uc5d0\uc11c\ub294 URL \ud30c\ub77c\ubbf8\ud130\uc640 \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\ub97c \ubaa8\ub450 \uc0ac\uc6a9\ud558\ub294 Express \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uad6c\uc131\ud574\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code>const express = require('express');\nconst app = express();\nconst port = 3000;\n\n\/\/ \uc0ac\uc6a9\uc790 \ub370\uc774\ud130\nconst users = {\n    1: { name: 'Alice' },\n    2: { name: 'Bob' },\n};\n\napp.get('\/user\/:id', (req, res) =&gt; {\n    const userId = req.params.id;\n    const user = users[userId];\n\n    if (user) {\n        res.send(`User found: ${user.name}`);\n    } else {\n        res.status(404).send('User not found');\n    }\n});\n\napp.get('\/user\/:id\/posts', (req, res) =&gt; {\n    const userId = req.params.id;\n    const page = req.query.page || 1;\n    res.send(`Getting posts for user ${userId} on page ${page}`);\n});\n\napp.listen(port, () =&gt; {\n    console.log(`Server running at http:\/\/localhost:${port}`);\n});<\/code><\/pre>\n<h3>5.1 \uc11c\ubc84 \uc2e4\ud589 \ubc0f \ud14c\uc2a4\ud2b8<\/h3>\n<p>\uc11c\ubc84\ub97c \uc2e4\ud589\ud55c \ud6c4, \ube0c\ub77c\uc6b0\uc800 \ub610\ub294 Postman\uacfc \uac19\uc740 API \ud074\ub77c\uc774\uc5b8\ud2b8\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub2e4\uc74c\uacfc \uac19\uc774 \ud14c\uc2a4\ud2b8\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<ul>\n<li><code>GET \/user\/1<\/code> -&gt; \uc0ac\uc6a9\uc790 \uc815\ubcf4 \uc870\ud68c<\/li>\n<li><code>GET \/user\/3<\/code> -&gt; \uc0ac\uc6a9\uc790 \uc5c6\uc74c<\/li>\n<li><code>GET \/user\/1\/posts?page=2<\/code> -&gt; \uc0ac\uc6a9\uc790 1\uc758 \uac8c\uc2dc\ubb3c \uc870\ud68c (2\ud398\uc774\uc9c0)<\/li>\n<\/ul>\n<h2>\ub9c8\ubb34\ub9ac<\/h2>\n<p>\uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 Express.js\ub97c \uc0ac\uc6a9\ud558\uc5ec URL \ud30c\ub77c\ubbf8\ud130\uc640 \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\ub97c \ub2e4\ub8e8\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uc558\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uac1c\ub150\uc740 \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0\uc11c \ub370\uc774\ud130\ub97c \ud6a8\uacfc\uc801\uc73c\ub85c \uad00\ub9ac\ud558\uace0 \uc0ac\uc6a9\uc790 \uc694\uccad\uc5d0 \uc751\ub2f5\ud558\ub294 \ub370 \ub9e4\uc6b0 \uc720\uc6a9\ud569\ub2c8\ub2e4. \ub354 \uae4a\uc774 \uc788\ub294 \uc774\ud574\ub97c \uc704\ud574 \ub2e4\uc591\ud55c \uc608\uc81c\ub97c \uc2dc\ub3c4\ud574\ubcf4\uace0, \uc790\uc2e0\ub9cc\uc758 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uad6c\ucd95\ud574\ubcf4\uae30\ub97c \uad8c\uc7a5\ud569\ub2c8\ub2e4.<\/p>\n<p>\uac10\uc0ac\ud569\ub2c8\ub2e4!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \ub54c, \ud074\ub77c\uc774\uc5b8\ud2b8\uac00 \uc11c\ubc84\uc5d0 \ub370\uc774\ud130\ub97c \uc804\ub2ec\ud558\ub294 \ubc29\ubc95\uc740 \ub9e4\uc6b0 \uc911\uc694\ud569\ub2c8\ub2e4. \ud2b9\ud788 Express.js\uc640 \uac19\uc740 Node.js \uae30\ubc18\uc758 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub97c \uc0ac\uc6a9\ud560 \ub54c, URL \ud30c\ub77c\ubbf8\ud130\uc640 \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\ub97c \ud65c\uc6a9\ud558\ub294 \ubc29\ubc95\uc744 \uc774\ud574\ud558\ub294 \uac83\uc740 \ud544\uc218\uc801\uc785\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 URL \ud30c\ub77c\ubbf8\ud130\uc640 \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\uc758 \uac1c\ub150\uacfc \ud568\uaed8 \uc0ac\uc6a9 \ubc29\ubc95\uc744 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. URL \ud30c\ub77c\ubbf8\ud130\ub780? URL \ud30c\ub77c\ubbf8\ud130\ub294 URL \uacbd\ub85c\uc758 \uc77c\ubd80\ub85c, \ubcf4\ud1b5 \ub9ac\uc18c\uc2a4\ub97c \uc2dd\ubcc4\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uc608\ub97c &hellip; <a href=\"https:\/\/atmokpo.com\/w\/38334\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Express \uac1c\ubc1c \uac15\uc88c, URL \ud30c\ub77c\ubbf8\ud130 \ubc0f \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130 \uc0ac\uc6a9\ud558\uae30&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[181],"tags":[],"class_list":["post-38334","post","type-post","status-publish","format-standard","hentry","category-express"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Express \uac1c\ubc1c \uac15\uc88c, URL \ud30c\ub77c\ubbf8\ud130 \ubc0f \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130 \uc0ac\uc6a9\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/38334\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Express \uac1c\ubc1c \uac15\uc88c, URL \ud30c\ub77c\ubbf8\ud130 \ubc0f \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130 \uc0ac\uc6a9\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \ub54c, \ud074\ub77c\uc774\uc5b8\ud2b8\uac00 \uc11c\ubc84\uc5d0 \ub370\uc774\ud130\ub97c \uc804\ub2ec\ud558\ub294 \ubc29\ubc95\uc740 \ub9e4\uc6b0 \uc911\uc694\ud569\ub2c8\ub2e4. \ud2b9\ud788 Express.js\uc640 \uac19\uc740 Node.js \uae30\ubc18\uc758 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub97c \uc0ac\uc6a9\ud560 \ub54c, URL \ud30c\ub77c\ubbf8\ud130\uc640 \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\ub97c \ud65c\uc6a9\ud558\ub294 \ubc29\ubc95\uc744 \uc774\ud574\ud558\ub294 \uac83\uc740 \ud544\uc218\uc801\uc785\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 URL \ud30c\ub77c\ubbf8\ud130\uc640 \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\uc758 \uac1c\ub150\uacfc \ud568\uaed8 \uc0ac\uc6a9 \ubc29\ubc95\uc744 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. URL \ud30c\ub77c\ubbf8\ud130\ub780? URL \ud30c\ub77c\ubbf8\ud130\ub294 URL \uacbd\ub85c\uc758 \uc77c\ubd80\ub85c, \ubcf4\ud1b5 \ub9ac\uc18c\uc2a4\ub97c \uc2dd\ubcc4\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uc608\ub97c &hellip; \ub354 \ubcf4\uae30 &quot;Express \uac1c\ubc1c \uac15\uc88c, URL \ud30c\ub77c\ubbf8\ud130 \ubc0f \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130 \uc0ac\uc6a9\ud558\uae30&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/38334\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T17:17:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:44:37+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/38334\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38334\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Express \uac1c\ubc1c \uac15\uc88c, URL \ud30c\ub77c\ubbf8\ud130 \ubc0f \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130 \uc0ac\uc6a9\ud558\uae30\",\"datePublished\":\"2024-11-01T17:17:41+00:00\",\"dateModified\":\"2024-11-26T06:44:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38334\/\"},\"wordCount\":50,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Express\uc11c\ubc84\uac1c\ubc1c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/38334\/\",\"url\":\"https:\/\/atmokpo.com\/w\/38334\/\",\"name\":\"Express \uac1c\ubc1c \uac15\uc88c, URL \ud30c\ub77c\ubbf8\ud130 \ubc0f \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130 \uc0ac\uc6a9\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T17:17:41+00:00\",\"dateModified\":\"2024-11-26T06:44:37+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38334\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/38334\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/38334\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Express \uac1c\ubc1c \uac15\uc88c, URL \ud30c\ub77c\ubbf8\ud130 \ubc0f \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130 \uc0ac\uc6a9\ud558\uae30\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Express \uac1c\ubc1c \uac15\uc88c, URL \ud30c\ub77c\ubbf8\ud130 \ubc0f \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130 \uc0ac\uc6a9\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/38334\/","og_locale":"ko_KR","og_type":"article","og_title":"Express \uac1c\ubc1c \uac15\uc88c, URL \ud30c\ub77c\ubbf8\ud130 \ubc0f \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130 \uc0ac\uc6a9\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \ub54c, \ud074\ub77c\uc774\uc5b8\ud2b8\uac00 \uc11c\ubc84\uc5d0 \ub370\uc774\ud130\ub97c \uc804\ub2ec\ud558\ub294 \ubc29\ubc95\uc740 \ub9e4\uc6b0 \uc911\uc694\ud569\ub2c8\ub2e4. \ud2b9\ud788 Express.js\uc640 \uac19\uc740 Node.js \uae30\ubc18\uc758 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub97c \uc0ac\uc6a9\ud560 \ub54c, URL \ud30c\ub77c\ubbf8\ud130\uc640 \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\ub97c \ud65c\uc6a9\ud558\ub294 \ubc29\ubc95\uc744 \uc774\ud574\ud558\ub294 \uac83\uc740 \ud544\uc218\uc801\uc785\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 URL \ud30c\ub77c\ubbf8\ud130\uc640 \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130\uc758 \uac1c\ub150\uacfc \ud568\uaed8 \uc0ac\uc6a9 \ubc29\ubc95\uc744 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. URL \ud30c\ub77c\ubbf8\ud130\ub780? URL \ud30c\ub77c\ubbf8\ud130\ub294 URL \uacbd\ub85c\uc758 \uc77c\ubd80\ub85c, \ubcf4\ud1b5 \ub9ac\uc18c\uc2a4\ub97c \uc2dd\ubcc4\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uc608\ub97c &hellip; \ub354 \ubcf4\uae30 \"Express \uac1c\ubc1c \uac15\uc88c, URL \ud30c\ub77c\ubbf8\ud130 \ubc0f \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130 \uc0ac\uc6a9\ud558\uae30\"","og_url":"https:\/\/atmokpo.com\/w\/38334\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T17:17:41+00:00","article_modified_time":"2024-11-26T06:44:37+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/38334\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/38334\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Express \uac1c\ubc1c \uac15\uc88c, URL \ud30c\ub77c\ubbf8\ud130 \ubc0f \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130 \uc0ac\uc6a9\ud558\uae30","datePublished":"2024-11-01T17:17:41+00:00","dateModified":"2024-11-26T06:44:37+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/38334\/"},"wordCount":50,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Express\uc11c\ubc84\uac1c\ubc1c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/38334\/","url":"https:\/\/atmokpo.com\/w\/38334\/","name":"Express \uac1c\ubc1c \uac15\uc88c, URL \ud30c\ub77c\ubbf8\ud130 \ubc0f \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130 \uc0ac\uc6a9\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T17:17:41+00:00","dateModified":"2024-11-26T06:44:37+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/38334\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/38334\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/38334\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Express \uac1c\ubc1c \uac15\uc88c, URL \ud30c\ub77c\ubbf8\ud130 \ubc0f \ucffc\ub9ac \ud30c\ub77c\ubbf8\ud130 \uc0ac\uc6a9\ud558\uae30"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38334","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=38334"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38334\/revisions"}],"predecessor-version":[{"id":38335,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38334\/revisions\/38335"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=38334"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=38334"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=38334"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}