{"id":38332,"date":"2024-11-01T17:17:40","date_gmt":"2024-11-01T17:17:40","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=38332"},"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-%eb%b3%b4%ec%95%88-%ea%b3%a0%eb%a0%a4%ec%82%ac%ed%95%ad-%eb%b0%8f-cors-%ec%a0%95%ec%b1%85","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/38332\/","title":{"rendered":"Express \uac1c\ubc1c \uac15\uc88c, \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \ubc0f CORS \uc815\ucc45"},"content":{"rendered":"<p><body><\/p>\n<article>\n<header>\n<p>\uc791\uc131\uc790: \uc870\uad11\ud615<\/p>\n<p>\uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c<\/p>\n<\/header>\n<section>\n<h2>1. \uc11c\ub860<\/h2>\n<p>Express\ub294 Node.js\ub97c \uae30\ubc18\uc73c\ub85c \ud55c \uacbd\ub7c9 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ubc31\uc5d4\ub4dc \uc11c\ubc84 \uac1c\ubc1c\uc5d0 \ub110\ub9ac \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uadf8\ub7ec\ub098, \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \ub54c \ubcf4\uc548\uc740 \uac00\uc7a5 \uc911\uc694\ud55c \uace0\ub824\uc0ac\ud56d \uc911 \ud558\ub098\uc785\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 Express \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0 \ub300\ud55c \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d\uacfc CORS(\uad50\ucc28 \ucd9c\ucc98 \ub9ac\uc18c\uc2a4 \uacf5\uc720) \uc815\ucc45\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<\/section>\n<section>\n<h2>2. Express\uc758 \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d<\/h2>\n<p>\uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \ubcf4\uc548\uc744 \uac15\ud654\ud558\uae30 \uc704\ud574 \ub2e4\uc74c\uacfc \uac19\uc740 \ubc29\ubc95\ub4e4\uc744 \uc801\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>2.1. HTTPS \uc0ac\uc6a9<\/h3>\n<p>HTTP \ub300\uc2e0 HTTPS\ub97c \uc0ac\uc6a9\ud568\uc73c\ub85c\uc368, \ub370\uc774\ud130 \uc804\uc1a1 \uc2dc \uc554\ud638\ud654\ub97c \ud1b5\ud574 \uc815\ubcf4\uc758 \uc720\ucd9c\uacfc \uc911\uac04\uc790 \uacf5\uaca9\uc744 \ubc29\uc9c0\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. Express \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0\uc11c HTTPS\ub97c \uc124\uc815\ud558\ub294 \ubc29\ubc95\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code>\nconst express = require('express');\nconst https = require('https');\nconst fs = require('fs');\n\nconst app = express();\nconst PORT = 3000;\n\n\/\/ SSL \uc778\uc99d\uc11c \uacbd\ub85c \uc124\uc815\nconst options = {\n    key: fs.readFileSync('\/path\/to\/private-key.pem'),\n    cert: fs.readFileSync('\/path\/to\/certificate.pem')\n};\n\n\/\/ HTTPS \uc11c\ubc84 \uc0dd\uc131\nhttps.createServer(options, app).listen(PORT, () =&gt; {\n    console.log(`HTTPS \uc11c\ubc84\uac00 \ud3ec\ud2b8 ${PORT}\uc5d0\uc11c \uc2e4\ud589 \uc911\uc785\ub2c8\ub2e4.`);\n});\n            <\/code><\/pre>\n<h3>2.2. Helmet \ubbf8\ub4e4\uc6e8\uc5b4 \uc0ac\uc6a9<\/h3>\n<p>Helmet\uc740 Express \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \ubcf4\uc548\uc744 \ub192\uc774\uae30 \uc704\ud574 HTTP \ud5e4\ub354\ub97c \uc124\uc815\ud558\ub294 \ubbf8\ub4e4\uc6e8\uc5b4\uc785\ub2c8\ub2e4. \ub2e4\uc74c\uacfc \uac19\uc774 \uc27d\uac8c \uc801\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code>\nconst helmet = require('helmet');\n\napp.use(helmet());\n            <\/code><\/pre>\n<h3>2.3. \ub370\uc774\ud130 \uac80\uc99d \ubc0f \uc778\uac00<\/h3>\n<p>\uc11c\ubc84\uc5d0\uc11c \uc0ac\uc6a9\ud558\ub294 \uc785\ub825 \ub370\uc774\ud130\uc5d0 \ub300\ud574 \ucca0\uc800\ud55c \uac80\uc99d \ubc0f \uc778\uac00 \uc808\ucc28\ub97c \uad6c\ud604\ud574\uc57c \ud569\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \uc0ac\uc6a9\uc790\uac00 \uc785\ub825\ud55c \ub370\uc774\ud130\uc5d0 \ub300\ud574 xss \ud544\ud130\ub9c1, SQL \uc778\uc81d\uc158 \ubc29\uc9c0\ub97c \uc704\ud55c Prepared Statement \ub4f1\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code>\nconst { body, validationResult } = require('express-validator');\n\napp.post('\/user', [\n    body('email').isEmail(),\n    body('password').isLength({ min: 5 })\n], (req, res) =&gt; {\n    const errors = validationResult(req);\n    if (!errors.isEmpty()) {\n        return res.status(400).json({ errors: errors.array() });\n    }\n\n    \/\/ \uc720\uc800 \uc0dd\uc131 \ub85c\uc9c1\n});\n            <\/code><\/pre>\n<h3>2.4. \ube44\ubc00\ubc88\ud638 \ud574\uc2dc\ud654<\/h3>\n<p>\uc0ac\uc6a9\uc790 \ube44\ubc00\ubc88\ud638\ub294 \ud3c9\ubb38\uc73c\ub85c \uc800\uc7a5\ud558\uc9c0 \uc54a\uace0 \ud574\uc2dc \ucc98\ub9ac\ud558\uc5ec \uc800\uc7a5\ud574\uc57c \ud569\ub2c8\ub2e4. bcrypt\uc640 \uac19\uc740 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code>\nconst bcrypt = require('bcrypt');\n\nconst saltRounds = 10;\nconst myPlaintextPassword = 's0\/\\\/\\P4$$w0rD';\n\nbcrypt.hash(myPlaintextPassword, saltRounds, function(err, hash) {\n    \/\/ \ud574\uc2dc\ub41c \ube44\ubc00\ubc88\ud638 \ub370\uc774\ud130\ubca0\uc774\uc2a4\uc5d0 \uc800\uc7a5\n});\n            <\/code><\/pre>\n<h3>2.5. \uc5d0\ub7ec \ud578\ub4e4\ub9c1<\/h3>\n<p>\uc5d0\ub7ec \ud578\ub4e4\ub9c1\uc744 \ud1b5\ud574 \uc0ac\uc6a9\uc790\uc5d0\uac8c \ubd88\ud544\uc694\ud55c \uc815\ubcf4\uac00 \ub178\ucd9c\ub418\ub294 \uac83\uc744 \ubc29\uc9c0\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc801\uc808\ud55c \uc5d0\ub7ec \uba54\uc2dc\uc9c0\ub97c \uc815\uc758\ud558\uace0 \ub85c\uadf8\ub97c \uad00\ub9ac\ud558\uc5ec \ubcf4\uc548\uc131\uc744 \ub192\uc774\ub294 \uac83\uc774 \uc88b\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code>\napp.use((err, req, res, next) =&gt; {\n    console.error(err.stack);\n    res.status(500).send('\ubb34\uc5b8\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4!');\n});\n            <\/code><\/pre>\n<\/section>\n<section>\n<h2>3. CORS \uc815\ucc45<\/h2>\n<p>CORS\ub294 &#8220;Cross-Origin Resource Sharing&#8221;\uc758 \uc57d\uc790\ub85c, \uc6f9 \ud398\uc774\uc9c0\uac00 \ub2e4\ub978 \ucd9c\ucc98\uc758 \ub9ac\uc18c\uc2a4\uc5d0 \uc811\uadfc\ud560 \uc218 \uc788\ub3c4\ub85d \ud574\uc8fc\ub294 \uba54\ucee4\ub2c8\uc998\uc785\ub2c8\ub2e4. CORS \uc815\ucc45\uc744 \uc774\ud574\ud558\uace0 \uc124\uc815\ud558\ub294 \uac83\uc740 \ubcf4\uc548\uacfc \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc815\uc0c1 \uc791\ub3d9\uc5d0 \ud544\uc218\uc801\uc785\ub2c8\ub2e4.<\/p>\n<h3>3.1. CORS\uc758 \ud544\uc694\uc131<\/h3>\n<p>\ubaa8\ub358 \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc740 \uc885\uc885 \ub2e4\uc591\ud55c \ucd9c\ucc98\uc758 API\uc640 \uc0c1\ud638\uc791\uc6a9\ud569\ub2c8\ub2e4. \uc774\ub54c, \ube0c\ub77c\uc6b0\uc800\ub294 \ubcf4\uc548 \uc0c1\uc758 \uc774\uc720\ub85c \uad50\ucc28 \ucd9c\ucc98 \uc694\uccad\uc744 \uc81c\ud55c\ud569\ub2c8\ub2e4. CORS\ub294 \uc774 \uc81c\ud55c\uc744 \uc124\uc815\ud558\uace0 \uad00\ub9ac\ud560 \uc218 \uc788\ub294 \ubc29\ubc95\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4.<\/p>\n<h3>3.2. CORS\ub97c \uc124\uc815\ud558\ub294 \ubc29\ubc95<\/h3>\n<p>Express\uc5d0\uc11c CORS\ub97c \uc124\uc815\ud560 \ub54c\ub294 &#8216;cors&#8217; \ubbf8\ub4e4\uc6e8\uc5b4\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc124\uce58 \ud6c4 \uc544\ub798\uc640 \uac19\uc774 \uc124\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code>\nconst cors = require('cors');\n\n\/\/ CORS \ubbf8\ub4e4\uc6e8\uc5b4 \uc0ac\uc6a9\napp.use(cors({\n    origin: 'https:\/\/example.com', \/\/ \ud5c8\uc6a9\ud560 \ucd9c\ucc98\n    methods: ['GET', 'POST'], \/\/ \ud5c8\uc6a9\ud560 HTTP \uba54\uc11c\ub4dc\n    allowedHeaders: ['Content-Type', 'Authorization'] \/\/ \ud5c8\uc6a9\ud560 \ud5e4\ub354\n}));\n            <\/code><\/pre>\n<h3>3.3. \ud2b9\uc815 \uacbd\ub85c\uc5d0 \ub300\ud55c CORS \uc124\uc815<\/h3>\n<p>\ud2b9\uc815 \uacbd\ub85c\uc5d0\ub9cc CORS\ub97c \uc801\uc6a9\ud558\uace0 \uc2f6\uc740 \uacbd\uc6b0, \uc635\uc158\uc744 \uc9c0\uc815\ud558\uc5ec \uac1c\ubcc4\uc801\uc73c\ub85c \uc124\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code>\napp.get('\/api\/data', cors(), (req, res) =&gt; {\n    res.json({ data: '\ub370\uc774\ud130\uc785\ub2c8\ub2e4.' });\n});\n            <\/code><\/pre>\n<h2>4. CORS \uad00\ub828 \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d<\/h2>\n<p>CORS\ub97c \uc124\uc815\ud560 \ub54c \uc8fc\uc758\ud574\uc57c \ud560 \uc810\uc740 \ud5c8\uc6a9\ud560 \ucd9c\ucc98\ub97c \uc815\ud655\ud788 \uc9c0\uc815\ud558\ub294 \uac83\uc785\ub2c8\ub2e4. &#8216;*&#8217;\uc640 \uac19\uc740 \uc640\uc77c\ub4dc\uce74\ub4dc\ub97c \uc0ac\uc6a9\ud558\uba74 \ubaa8\ub4e0 \ub3c4\uba54\uc778\uc5d0\uc11c \uc694\uccad\ud560 \uc218 \uc788\uac8c \ub418\ubbc0\ub85c, \ud544\uc694\ud55c \uacbd\uc6b0\uc5d0\ub9cc \uc0ac\uc6a9\ud574\uc57c \ud569\ub2c8\ub2e4.<\/p>\n<h3>4.1. \uc694\uccad \ud5e4\ub354\uc640 \uba54\uc11c\ub4dc \uc81c\ud55c<\/h3>\n<p>CORS \uc124\uc815 \uc2dc, \ud5c8\uc6a9\ud560 \uc694\uccad \ud5e4\ub354\uc640 HTTP \uba54\uc11c\ub4dc\ub97c \ucca0\uc800\ud788 \uad00\ub9ac\ud558\uc5ec \ubcf4\uc548\uc744 \uac15\ud654\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>4.2. Credential \uc9c0\uc6d0<\/h3>\n<p>\uc778\uc99d \uc815\ubcf4\ub97c \ud3ec\ud568\ud55c \uc694\uccad\uc744 \ucc98\ub9ac\ud574\uc57c \ud560 \uacbd\uc6b0, &#8216;Access-Control-Allow-Credentials&#8217; \ud5e4\ub354\ub97c true\ub85c \uc124\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub2e4\ub9cc, \uc694\uccad\uc758 \ucd9c\ucc98\ub97c \uc81c\ud55c\ud574\uc57c \ud569\ub2c8\ub2e4.<\/p>\n<pre><code>\napp.use(cors({\n    origin: 'https:\/\/example.com',\n    credentials: true\n}));\n            <\/code><\/pre>\n<h2>5. \uacb0\ub860<\/h2>\n<p>Express\uc5d0\uc11c\uc758 \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \ubc0f CORS \uc815\ucc45\uc740 \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc548\uc804\uc131\uacfc \uc131\ub2a5\uc5d0 \ud070 \uc601\ud5a5\uc744 \ubbf8\uce69\ub2c8\ub2e4. HTTPS, Helmet, \ub370\uc774\ud130 \uac80\uc99d, \ube44\ubc00\ubc88\ud638 \ud574\uc2dc\ud654 \ub4f1\uc758 \ubc29\ubc95\uc744 \ud1b5\ud574 \ubcf4\uc548\uc744 \uac15\ud654\ud558\uace0, CORS\ub97c \uc801\uc808\ud788 \uc124\uc815\ud558\uc5ec \ub2e4\uc591\ud55c \ucd9c\ucc98\uc640 \uc548\uc804\ud558\uac8c \uc0c1\ud638\uc791\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<p>\uc55e\uc73c\ub85c\uc758 \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0\uc11c\ub3c4 \ubcf4\uc548\uc744 \ud56d\uc0c1 \uc5fc\ub450\uc5d0 \ub450\uace0, \uc815\uae30\uc801\uc73c\ub85c \ubcf4\uc548 \uc0c1\ud0dc\ub97c \uc810\uac80\ud558\ub294 \uac83\uc774 \uc911\uc694\ud569\ub2c8\ub2e4.<\/p>\n<\/section>\n<footer>\n<p>\uc774 \uac8c\uc2dc\ubb3c\uc774 \uc720\uc6a9\ud558\uc168\ub2e4\uba74, \uacf5\uc720\ud574 \uc8fc\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4!<\/p>\n<\/footer>\n<\/article>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c 1. \uc11c\ub860 Express\ub294 Node.js\ub97c \uae30\ubc18\uc73c\ub85c \ud55c \uacbd\ub7c9 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ubc31\uc5d4\ub4dc \uc11c\ubc84 \uac1c\ubc1c\uc5d0 \ub110\ub9ac \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uadf8\ub7ec\ub098, \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \ub54c \ubcf4\uc548\uc740 \uac00\uc7a5 \uc911\uc694\ud55c \uace0\ub824\uc0ac\ud56d \uc911 \ud558\ub098\uc785\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 Express \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0 \ub300\ud55c \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d\uacfc CORS(\uad50\ucc28 \ucd9c\ucc98 \ub9ac\uc18c\uc2a4 \uacf5\uc720) \uc815\ucc45\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 2. Express\uc758 \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \ubcf4\uc548\uc744 \uac15\ud654\ud558\uae30 \uc704\ud574 \ub2e4\uc74c\uacfc &hellip; <a href=\"https:\/\/atmokpo.com\/w\/38332\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Express \uac1c\ubc1c \uac15\uc88c, \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \ubc0f CORS \uc815\ucc45&#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-38332","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, \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \ubc0f CORS \uc815\ucc45 - \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\/38332\/\" \/>\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, \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \ubc0f CORS \uc815\ucc45 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c 1. \uc11c\ub860 Express\ub294 Node.js\ub97c \uae30\ubc18\uc73c\ub85c \ud55c \uacbd\ub7c9 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ubc31\uc5d4\ub4dc \uc11c\ubc84 \uac1c\ubc1c\uc5d0 \ub110\ub9ac \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uadf8\ub7ec\ub098, \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \ub54c \ubcf4\uc548\uc740 \uac00\uc7a5 \uc911\uc694\ud55c \uace0\ub824\uc0ac\ud56d \uc911 \ud558\ub098\uc785\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 Express \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0 \ub300\ud55c \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d\uacfc CORS(\uad50\ucc28 \ucd9c\ucc98 \ub9ac\uc18c\uc2a4 \uacf5\uc720) \uc815\ucc45\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 2. Express\uc758 \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \ubcf4\uc548\uc744 \uac15\ud654\ud558\uae30 \uc704\ud574 \ub2e4\uc74c\uacfc &hellip; \ub354 \ubcf4\uae30 &quot;Express \uac1c\ubc1c \uac15\uc88c, \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \ubc0f CORS \uc815\ucc45&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/38332\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T17:17:40+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\/38332\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38332\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Express \uac1c\ubc1c \uac15\uc88c, \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \ubc0f CORS \uc815\ucc45\",\"datePublished\":\"2024-11-01T17:17:40+00:00\",\"dateModified\":\"2024-11-26T06:44:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38332\/\"},\"wordCount\":49,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Express\uc11c\ubc84\uac1c\ubc1c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/38332\/\",\"url\":\"https:\/\/atmokpo.com\/w\/38332\/\",\"name\":\"Express \uac1c\ubc1c \uac15\uc88c, \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \ubc0f CORS \uc815\ucc45 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T17:17:40+00:00\",\"dateModified\":\"2024-11-26T06:44:37+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38332\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/38332\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/38332\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Express \uac1c\ubc1c \uac15\uc88c, \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \ubc0f CORS \uc815\ucc45\"}]},{\"@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, \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \ubc0f CORS \uc815\ucc45 - \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\/38332\/","og_locale":"ko_KR","og_type":"article","og_title":"Express \uac1c\ubc1c \uac15\uc88c, \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \ubc0f CORS \uc815\ucc45 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c 1. \uc11c\ub860 Express\ub294 Node.js\ub97c \uae30\ubc18\uc73c\ub85c \ud55c \uacbd\ub7c9 \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ubc31\uc5d4\ub4dc \uc11c\ubc84 \uac1c\ubc1c\uc5d0 \ub110\ub9ac \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uadf8\ub7ec\ub098, \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \ub54c \ubcf4\uc548\uc740 \uac00\uc7a5 \uc911\uc694\ud55c \uace0\ub824\uc0ac\ud56d \uc911 \ud558\ub098\uc785\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 Express \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0 \ub300\ud55c \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d\uacfc CORS(\uad50\ucc28 \ucd9c\ucc98 \ub9ac\uc18c\uc2a4 \uacf5\uc720) \uc815\ucc45\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 2. Express\uc758 \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \ubcf4\uc548\uc744 \uac15\ud654\ud558\uae30 \uc704\ud574 \ub2e4\uc74c\uacfc &hellip; \ub354 \ubcf4\uae30 \"Express \uac1c\ubc1c \uac15\uc88c, \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \ubc0f CORS \uc815\ucc45\"","og_url":"https:\/\/atmokpo.com\/w\/38332\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T17:17:40+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\/38332\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/38332\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Express \uac1c\ubc1c \uac15\uc88c, \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \ubc0f CORS \uc815\ucc45","datePublished":"2024-11-01T17:17:40+00:00","dateModified":"2024-11-26T06:44:37+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/38332\/"},"wordCount":49,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Express\uc11c\ubc84\uac1c\ubc1c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/38332\/","url":"https:\/\/atmokpo.com\/w\/38332\/","name":"Express \uac1c\ubc1c \uac15\uc88c, \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \ubc0f CORS \uc815\ucc45 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T17:17:40+00:00","dateModified":"2024-11-26T06:44:37+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/38332\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/38332\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/38332\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Express \uac1c\ubc1c \uac15\uc88c, \ubcf4\uc548 \uace0\ub824\uc0ac\ud56d \ubc0f CORS \uc815\ucc45"}]},{"@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":[{"id":43374,"url":"https:\/\/atmokpo.com\/w\/43374\/","url_meta":{"origin":38332,"position":0},"title":"[Electron]  010. Electron\uacfc Node.js \ud1b5\ud569\ud558\uae30, \ud30c\uc77c \uc2dc\uc2a4\ud15c \uc811\uadfc, API \ud638\ucd9c \ub4f1\uc758 \uc608\uc2dc","author":"root","date":"2024\ub144 11\uc6d4 26\uc77c","format":false,"excerpt":"1. Electron \uc18c\uac1c Electron\uc740 GitHub\uc5d0\uc11c \uac1c\ubc1c\ud55c \uc624\ud508\uc18c\uc2a4 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \uc6f9 \uae30\uc220(HTML, CSS, JavaScript)\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub370\uc2a4\ud06c\ud1b1 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\uac8c \ud574\uc90d\ub2c8\ub2e4. Electron\uc740 Chromium\uacfc Node.js\ub97c \uacb0\ud569\ud558\uc5ec \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub370\uc2a4\ud06c\ud1b1\uc73c\ub85c \ubcc0\ud658\ud558\ub294 \ub370 \ud544\uc694\ud55c \ubaa8\ub4e0 \uae30\ub2a5\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774\ub85c \uc778\ud574 \uac1c\ubc1c\uc790\ub294 \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0\uc11c \uc0ac\uc6a9\ub418\ub358 \uacbd\ud5d8\uc744 \uadf8\ub300\ub85c \ub370\uc2a4\ud06c\ud1b1 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc73c\ub85c \uc774\uc5b4\uac08 \uc218 \uc788\uc2b5\ub2c8\ub2e4. 2. Node.js\ub780 \ubb34\uc5c7\uc778\uac00? Node.js\ub294 \uc774\ubca4\ud2b8\u2026","rel":"","context":"&quot;electron&quot;\uc5d0\uc11c","block_context":{"text":"electron","link":"https:\/\/atmokpo.com\/w\/category\/electron\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43354,"url":"https:\/\/atmokpo.com\/w\/43354\/","url_meta":{"origin":38332,"position":1},"title":"[Electron]  012. Electron\uc758 \ubcf4\uc548 \ubaa8\ubc94 \uc0ac\ub840, CSP (Content Security Policy) \uc124\uc815 \ubc0f \uad8c\uc7a5 \uc0ac\ud56d","author":"root","date":"2024\ub144 11\uc6d4 26\uc77c","format":false,"excerpt":"Electron\uc740 \ub2e4\uc591\ud55c \ud50c\ub7ab\ud3fc\uc5d0\uc11c \ub370\uc2a4\ud06c\ud1b1 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\ub294 \ub9e4\uc6b0 \uc720\uc6a9\ud55c \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. \ud558\uc9c0\ub9cc, \ubcf4\uc548\uc758 \uc911\uc694\uc131\uc744 \uac04\uacfc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Electron \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0 \ub300\ud55c \ubcf4\uc548 \ubaa8\ubc94 \uc0ac\ub840\uc640 Content Security Policy(CSP) \uc124\uc815 \ubc29\ubc95 \ubc0f \uad8c\uc7a5 \uc0ac\ud56d\uc744 \uae4a\uc774 \uc788\uac8c \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. Electron\uc758 \ubcf4\uc548 \ubb38\uc81c \uc774\ud574\ud558\uae30 Electron\uc740 Chromium\uacfc Node.js\ub97c \uae30\ubc18\uc73c\ub85c \ud558\uc5ec \uc791\ub3d9\ud558\ubbc0\ub85c, \uc774 \ub450 \uae30\uc220\uc758\u2026","rel":"","context":"&quot;electron&quot;\uc5d0\uc11c","block_context":{"text":"electron","link":"https:\/\/atmokpo.com\/w\/category\/electron\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43378,"url":"https:\/\/atmokpo.com\/w\/43378\/","url_meta":{"origin":38332,"position":2},"title":"[Electron]  009. Electron\uacfc Node.js \ud1b5\ud569\ud558\uae30, Node.js \uae30\ub2a5\uc744 Electron\uc5d0\uc11c \ud65c\uc6a9\ud558\ub294 \ubc29\ubc95","author":"root","date":"2024\ub144 11\uc6d4 26\uc77c","format":false,"excerpt":"Node.js \uae30\ub2a5\uc744 Electron\uc5d0\uc11c \ud65c\uc6a9\ud558\ub294 \ubc29\ubc95 1. \uc11c\ub860 Electron\uc740 \ub370\uc2a4\ud06c\ud0d1 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4\uae30 \uc704\ud55c \uac15\ub825\ud55c \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ud06c\ub85c\uc2a4 \ud50c\ub7ab\ud3fc \uc9c0\uc6d0\uc744 \ud1b5\ud574 HTML, CSS, JavaScript\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\uac8c \ud574\uc90d\ub2c8\ub2e4. Node.js\ub294 \uc11c\ubc84 \uc0ac\uc774\ub4dc\uc5d0\uc11c \uc0ac\uc6a9\ub418\ub294 JavaScript \ud658\uacbd\uc73c\ub85c, \ud074\ub77c\uc774\uc5b8\ud2b8\uc640 \uc11c\ubc84 \uac04\uc758 \uc0c1\ud638 \uc791\uc6a9\uc744 \ud1b5\ud569\ud560 \uc218 \uc788\uac8c \ud574\uc8fc\ub294 \uc911\uc694\ud55c \uc5ed\ud560\uc744 \uc218\ud589\ud569\ub2c8\ub2e4. \uc774 \ub450 \uae30\uc220\uc744 \ud1b5\ud569\ud558\uba74 \ud48d\ubd80\ud55c\u2026","rel":"","context":"&quot;electron&quot;\uc5d0\uc11c","block_context":{"text":"electron","link":"https:\/\/atmokpo.com\/w\/category\/electron\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43334,"url":"https:\/\/atmokpo.com\/w\/43334\/","url_meta":{"origin":38332,"position":3},"title":"[Electron]  004. Electron \ud658\uacbd \uc124\uc815\ud558\uae30, \uae30\ubcf8 \ud504\ub85c\uc81d\ud2b8 \uad6c\uc870 \uc124\uba85","author":"root","date":"2024\ub144 11\uc6d4 26\uc77c","format":false,"excerpt":"004. Electron \ud658\uacbd \uc124\uc815\ud558\uae30, \uae30\ubcf8 \ud504\ub85c\uc81d\ud2b8 \uad6c\uc870 \uc124\uba85 Electron\uc740 \uc6f9 \uae30\uc220\uc744 \ud65c\uc6a9\ud558\uc5ec \ud06c\ub85c\uc2a4 \ud50c\ub7ab\ud3fc \ub370\uc2a4\ud06c\ud1b1 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\uac8c \ud574\uc8fc\ub294 \uc624\ud508 \uc18c\uc2a4 \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Electron \uac1c\ubc1c\uc744 \uc2dc\uc791\ud558\uae30 \uc704\ud55c \ud658\uacbd \uc124\uc815 \ubc29\ubc95\uacfc \uae30\ubcf8 \ud504\ub85c\uc81d\ud2b8 \uad6c\uc870\ub97c \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. Electron \uc124\uce58 \uc900\ube44 Electron\uc740 Node.js \uc704\uc5d0\uc11c \uc791\ub3d9\ud558\ubbc0\ub85c \uba3c\uc800 Node.js\ub97c \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. Node.js\ub294\u2026","rel":"","context":"&quot;electron&quot;\uc5d0\uc11c","block_context":{"text":"electron","link":"https:\/\/atmokpo.com\/w\/category\/electron\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43338,"url":"https:\/\/atmokpo.com\/w\/43338\/","url_meta":{"origin":38332,"position":4},"title":"[Electron]  017. Electron \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uc131\ub2a5 \ucd5c\uc801\ud654, \uc131\ub2a5 \ud5a5\uc0c1\uc744 \uc704\ud55c \ud301 \ubc0f \uae30\ubc95","author":"root","date":"2024\ub144 11\uc6d4 26\uc77c","format":false,"excerpt":"\uc774 \uae00\uc5d0\uc11c\ub294 Electron \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc131\ub2a5\uc744 \ucd5c\uc801\ud654\ud558\uae30 \uc704\ud55c \ub2e4\uc591\ud55c \uae30\ubc95\uacfc \ud301\uc744 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. Electron\uc740 \uc6f9 \uae30\uc220\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub370\uc2a4\ud06c\ud1b1 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\uac8c \ud574\uc8fc\ub294 \ud6cc\ub96d\ud55c \ud504\ub808\uc784\uc6cc\ud06c\uc774\uc9c0\ub9cc, \uc131\ub2a5 \ubb38\uc81c\ub294 \uac1c\ubc1c \uacfc\uc815\uc5d0\uc11c \uc790\uc8fc \ubc1c\uc0dd\ud560 \uc218 \uc788\ub294 \uc774\uc288\uc785\ub2c8\ub2e4. \ub530\ub77c\uc11c \uc801\uc808\ud55c \ucd5c\uc801\ud654 \uae30\ubc95\uc744 \uc0ac\uc6a9\ud558\ub294 \uac83\uc774 \uc911\uc694\ud569\ub2c8\ub2e4. 1. \uae30\ubcf8 \uc131\ub2a5 \ubb38\uc81c \uc774\ud574\ud558\uae30 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc131\ub2a5\uc744 \ucd5c\uc801\ud654\ud558\uae30 \uc704\ud574\uc11c\ub294 \uba3c\uc800 \uc131\ub2a5\u2026","rel":"","context":"&quot;electron&quot;\uc5d0\uc11c","block_context":{"text":"electron","link":"https:\/\/atmokpo.com\/w\/category\/electron\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43336,"url":"https:\/\/atmokpo.com\/w\/43336\/","url_meta":{"origin":38332,"position":5},"title":"[Electron]  019. Electron\uacfc \ud504\ub860\ud2b8\uc5d4\ub4dc \ud504\ub808\uc784\uc6cc\ud06c\uc758 \ud1b5\ud569, React, Vue.js, Angular \ub4f1\uacfc\uc758 \ud1b5\ud569 \ubc29\ubc95","author":"root","date":"2024\ub144 11\uc6d4 26\uc77c","format":false,"excerpt":"Electron\uc740 JavaScript, HTML \ubc0f CSS\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub370\uc2a4\ud06c\ud1b1 \uc751\uc6a9 \ud504\ub85c\uadf8\ub7a8\uc744 \ub9cc\ub4e4 \uc218 \uc788\ub3c4\ub85d \ud558\ub294 \uc624\ud508 \uc18c\uc2a4 \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. \ud504\ub860\ud2b8\uc5d4\ub4dc \ud504\ub808\uc784\uc6cc\ud06c\uc778 React, Vue.js, Angular\uc640 \ud1b5\ud569\ud558\uc5ec \uc804\ud1b5\uc801\uc778 \uc6f9 \uae30\uc220\uc744 \ud65c\uc6a9\ud558\uc5ec \ud48d\ubd80\ud55c \ub370\uc2a4\ud06c\ud1b1 \uc0ac\uc6a9\uc790 \uacbd\ud5d8\uc744 \uc0dd\uc131\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ubc88 \uae00\uc5d0\uc11c\ub294 Electron\uacfc React, Vue.js, Angular \ub4f1 \ub2e4\uc591\ud55c \ud504\ub860\ud2b8\uc5d4\ub4dc \ud504\ub808\uc784\uc6cc\ud06c\uc640\uc758 \ud1b5\ud569 \ubc29\ubc95\uc744 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. Electron \uac1c\uc694\u2026","rel":"","context":"&quot;electron&quot;\uc5d0\uc11c","block_context":{"text":"electron","link":"https:\/\/atmokpo.com\/w\/category\/electron\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38332","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=38332"}],"version-history":[{"count":2,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38332\/revisions"}],"predecessor-version":[{"id":43094,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38332\/revisions\/43094"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=38332"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=38332"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=38332"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}