{"id":38388,"date":"2024-11-01T17:18:07","date_gmt":"2024-11-01T17:18:07","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=38388"},"modified":"2024-11-26T06:44:27","modified_gmt":"2024-11-26T06:44:27","slug":"express-%ea%b0%9c%eb%b0%9c-%ea%b0%95%ec%a2%8c-heroku-vercel-aws-%eb%93%b1%ec%9d%84-%ec%9d%b4%ec%9a%a9%ed%95%9c-%ec%84%9c%eb%b2%84-%eb%b0%b0%ed%8f%ac-%eb%b0%a9%eb%b2%95","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/38388\/","title":{"rendered":"Express \uac1c\ubc1c \uac15\uc88c, Heroku, Vercel, AWS \ub4f1\uc744 \uc774\uc6a9\ud55c \uc11c\ubc84 \ubc30\ud3ec \ubc29\ubc95"},"content":{"rendered":"<p><body><\/p>\n<article>\n<p>\n            \uc6f9 \uac1c\ubc1c\uc758 \ub9ce\uc740 \ubd80\ubd84\uc774 \uc11c\ubc84 \uc0ac\uc774\ub4dc \uae30\uc220\uacfc \uadf8 \ubc30\ud3ec\uc5d0 \uc758\uc874\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 Express.js\ub97c \uc0ac\uc6a9\ud558\uc5ec \ubc31\uc5d4\ub4dc \uc11c\ubc84\ub97c \uad6c\ucd95\ud558\uace0, \uc774\ub97c Heroku, Vercel, \uadf8\ub9ac\uace0 AWS \ub4f1 \ub2e4\uc591\ud55c \ud50c\ub7ab\ud3fc\uc5d0 \ubc30\ud3ec\ud558\ub294 \ubc29\ubc95\uc744 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. \uc774 \uacfc\uc815\uc740 \uc804\uccb4\uc801\uc778 \uc6cc\ud06c\ud50c\ub85c\uc6b0\ub97c \uc774\ud574\ud558\ub294 \ub370 \ub3c4\uc6c0\uc774 \ub418\uba70, \uc88b\uc740 \uac1c\ubc1c \uc2b5\uad00\uc744 \uae30\ub974\ub294 \ub370 \uc911\uc694\ud55c \uae30\ucd08\uac00 \ub420 \uac83\uc785\ub2c8\ub2e4.\n        <\/p>\n<h2>1. Express.js\ub780?<\/h2>\n<p>\n            Express.js\ub294 Node.js \ud658\uacbd\uc5d0\uc11c \uc791\ub3d9\ud558\ub294 \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \uac04\ub2e8\ud558\uace0 \uc720\uc5f0\ud55c API\ub97c \uc81c\uacf5\ud558\uc5ec \uac1c\ubc1c\uc790\uac00 RESTful \uc6f9 \uc11c\ube44\uc2a4\ub97c \uc27d\uac8c \uad6c\ucd95\ud560 \uc218 \uc788\uac8c \ub3d5\uc2b5\ub2c8\ub2e4. \uacbd\ub7c9\uc774\uba70, \ub2e4\uc591\ud55c \ubbf8\ub4e4\uc6e8\uc5b4\uc640\uc758 \ud1b5\ud569\uc774 \uc6a9\uc774\ud574 \ub9ce\uc740 \uac1c\ubc1c\uc790\ub4e4\uc774 \uc120\ud0dd\ud558\ub294 \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4.\n        <\/p>\n<h2>2. Express.js\ub85c \uc11c\ubc84 \uad6c\ucd95\ud558\uae30<\/h2>\n<h3>2.1. \uae30\ubcf8 \uc124\uc815<\/h3>\n<p>\n            \uba3c\uc800, Node.js\uc640 npm\uc774 \uc124\uce58\ub418\uc5b4 \uc788\ub294\uc9c0 \ud655\uc778\ud569\ub2c8\ub2e4. \uadf8\ub7f0 \ub2e4\uc74c \uc0c8\ub85c\uc6b4 \ud504\ub85c\uc81d\ud2b8\ub97c \uc2dc\uc791\ud558\uc5ec \ud544\uc694\ud55c \ud328\ud0a4\uc9c0\ub97c \uc124\uce58\ud569\ub2c8\ub2e4.\n        <\/p>\n<pre><code>\n            mkdir express-backend\n            cd express-backend\n            npm init -y\n            npm install express\n        <\/code><\/pre>\n<h3>2.2. \uac04\ub2e8\ud55c \uc11c\ubc84 \ub9cc\ub4e4\uae30<\/h3>\n<p>\n            \ub2e4\uc74c\uc73c\ub85c, Express.js\ub97c \uc0ac\uc6a9\ud558\uc5ec \uae30\ubcf8\uc801\uc778 \uc11c\ubc84\ub97c \ub9cc\ub4e4\uc5b4 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4.\n        <\/p>\n<pre><code>\n            const express = require('express');\n            const app = express();\n            const PORT = process.env.PORT || 3000;\n\n            app.get('\/', (req, res) =&gt; {\n                res.send('Hello World!');\n            });\n\n            app.listen(PORT, () =&gt; {\n                console.log(`Server is running on http:\/\/localhost:${PORT}`);\n            });\n        <\/code><\/pre>\n<p>\n            \uc704 \ucf54\ub4dc\ub294 \uae30\ubcf8\uc801\uc778 Express \uc11c\ubc84\ub97c \uc124\uc815\ud569\ub2c8\ub2e4. `\/` \uacbd\ub85c\ub85c \uc694\uccad\uc744 \ubcf4\ub0b4\uba74 &#8220;Hello World!&#8221; \uba54\uc2dc\uc9c0\ub97c \uc751\ub2f5\ud569\ub2c8\ub2e4. \uc11c\ubc84\ub294 \uae30\ubcf8\uc801\uc73c\ub85c \ud3ec\ud2b8 3000\uc5d0\uc11c \uc2e4\ud589\ub429\ub2c8\ub2e4.\n        <\/p>\n<h2>3. \uc11c\ubc84 \ubc30\ud3ec \ubc29\ubc95<\/h2>\n<p>\n            Express \uc11c\ubc84\ub97c \uc9c0\uc5ed \ud658\uacbd\uc5d0\uc11c \uc131\uacf5\uc801\uc73c\ub85c \uc2e4\ud589\ud588\ub2e4\uba74, \uc774\uc81c\ub294 \ud074\ub77c\uc6b0\ub4dc \ud658\uacbd\uc5d0 \ubc30\ud3ec\ud574\uc57c \ud569\ub2c8\ub2e4. \uc774 \uc139\uc158\uc5d0\uc11c\ub294 Heroku, Vercel, \uadf8\ub9ac\uace0 AWS\ub97c \uc774\uc6a9\ud55c \ubc30\ud3ec \ubc29\ubc95\uc744 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.\n        <\/p>\n<h3>3.1. Heroku\uc5d0 \ubc30\ud3ec\ud558\uae30<\/h3>\n<h4>3.1.1. Heroku CLI \uc124\uce58<\/h4>\n<p>\n            Heroku\uc5d0 \ubc30\ud3ec\ud558\uae30 \uc704\ud574\uc11c\ub294 Heroku CLI\ub97c \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. \uc544\ub798 \ub9c1\ud06c\uc5d0\uc11c \uc124\uce58 \ubc29\ubc95\uc744 \ud655\uc778\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<br \/>\n            <a href=\"https:\/\/devcenter.heroku.com\/articles\/heroku-cli\" target=\"_blank\" rel=\"noopener\">Heroku CLI \uc124\uce58\ud558\uae30<\/a>\n<\/p>\n<h4>3.1.2. Heroku\ub85c \uc571 \uc0dd\uc131\ud558\uae30<\/h4>\n<p>\n            \ud130\ubbf8\ub110\uc5d0\uc11c \uc544\ub798\uc758 \uba85\ub839\uc5b4\ub97c \uc2e4\ud589\ud558\uc5ec \uc0c8\ub85c\uc6b4 Heroku \uc571\uc744 \uc0dd\uc131\ud569\ub2c8\ub2e4.\n        <\/p>\n<pre><code>\n            heroku create your-app-name\n        <\/code><\/pre>\n<h4>3.1.3. \ucf54\ub4dc \uc870\uc815<\/h4>\n<p>\n            Heroku\uc5d0\uc11c\ub294 \ud3ec\ud2b8\ub97c \ud658\uacbd \ubcc0\uc218\ub85c \uad00\ub9ac\ud558\ubbc0\ub85c, \ucf54\ub4dc\uc5d0\uc11c \ud3ec\ud2b8\ub97c \uc124\uc815\ud558\ub294 \ubd80\ubd84\uc744 \uc218\uc815\ud569\ub2c8\ub2e4.\n        <\/p>\n<pre><code>\n            const PORT = process.env.PORT || 3000;\n        <\/code><\/pre>\n<h4>3.1.4. \ubc30\ud3ec<\/h4>\n<p>\n            \ucf54\ub4dc\ub97c Heroku\uc5d0 \ubc30\ud3ec\ud558\uae30 \uc704\ud574 Git\uc744 \uc0ac\uc6a9\ud558\uc5ec \ucf54\ub4dc\ub97c \ucee4\ubc0b\ud55c \ud6c4, \uc544\ub798 \uba85\ub839\uc5b4\ub97c \ud1b5\ud574 \ud478\uc2dc\ud569\ub2c8\ub2e4.\n        <\/p>\n<pre><code>\n            git add .\n            git commit -m \"Initial commit\"\n            git push heroku master\n        <\/code><\/pre>\n<h4>3.1.5. \ubc30\ud3ec \ud655\uc778<\/h4>\n<p>\n            \ubc30\ud3ec\uac00 \uc644\ub8cc\ub418\uba74 \uc544\ub798 \uba85\ub839\uc5b4\ub97c \ud1b5\ud574 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc5f4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n        <\/p>\n<pre><code>\n            heroku open\n        <\/code><\/pre>\n<h3>3.2. Vercel\uc5d0 \ubc30\ud3ec\ud558\uae30<\/h3>\n<h4>3.2.1. Vercel CLI \uc124\uce58<\/h4>\n<p>\n            Vercel\uc5d0 \ubc30\ud3ec\ud558\uae30 \uc704\ud574 Vercel CLI\ub97c \uc124\uce58\ud569\ub2c8\ub2e4. \uc544\ub798 \ub9c1\ud06c\ub97c \ub530\ub77c \uc124\uce58\ud569\ub2c8\ub2e4.<br \/>\n            <a href=\"https:\/\/vercel.com\/download\" target=\"_blank\" rel=\"noopener\">Vercel \ub2e4\uc6b4\ub85c\ub4dc<\/a>\n<\/p>\n<h4>3.2.2. Vercel\ub85c \ud504\ub85c\uc81d\ud2b8 \ubc30\ud3ec\ud558\uae30<\/h4>\n<p>\n            \ud504\ub85c\uc81d\ud2b8 \ub8e8\ud2b8 \ub514\ub809\ud1a0\ub9ac\uc5d0\uc11c Vercel CLI\ub97c \uc0ac\uc6a9\ud558\uc5ec \ubc30\ud3ec\ud569\ub2c8\ub2e4.\n        <\/p>\n<pre><code>\n            vercel\n        <\/code><\/pre>\n<h4>3.2.3. \ud658\uacbd \ubcc0\uc218 \uc124\uc815<\/h4>\n<p>\n            Vercel \ub300\uc2dc\ubcf4\ub4dc\uc5d0\uc11c \ud658\uacbd \ubcc0\uc218\ub97c \uc124\uc815\ud560 \uc218 \uc788\uc73c\uba70, \ud3ec\ud2b8 \uc124\uc815\ub3c4 \ub9c8\ucc2c\uac00\uc9c0\ub85c \ud658\uacbd \ubcc0\uc218\uc5d0 \uc758\ud574 \uad00\ub9ac\ub429\ub2c8\ub2e4.\n        <\/p>\n<h3>3.3. AWS\uc5d0 \ubc30\ud3ec\ud558\uae30<\/h3>\n<h4>3.3.1. AWS \uacc4\uc815 \uc0dd\uc131<\/h4>\n<p>\n            AWS\uc5d0\uc11c \ubc30\ud3ec\ud558\uae30 \uc704\ud574\uc11c\ub294 AWS \uacc4\uc815\uc744 \uc0dd\uc131\ud574\uc57c \ud569\ub2c8\ub2e4. <a href=\"https:\/\/aws.amazon.com\/\" target=\"_blank\" rel=\"noopener\">AWS \uacf5\uc2dd \uc0ac\uc774\ud2b8<\/a>\uc5d0\uc11c \uacc4\uc815\uc744 \uc0dd\uc131\ud569\ub2c8\ub2e4.\n        <\/p>\n<h4>3.3.2. EC2 \uc778\uc2a4\ud134\uc2a4 \ub9cc\ub4e4\uae30<\/h4>\n<p>\n            AWS Management Console\uc5d0 \ub85c\uadf8\uc778\ud55c \ud6c4 EC2 \ub300\uc2dc\ubcf4\ub4dc\ub85c \uc774\ub3d9\ud569\ub2c8\ub2e4. &#8220;Launch Instance&#8221; \ubc84\ud2bc\uc744 \ud074\ub9ad\ud558\uc5ec \uc0c8\ub85c\uc6b4 \uc778\uc2a4\ud134\uc2a4\ub97c \uc0dd\uc131\ud569\ub2c8\ub2e4. \ubcf4\uc548 \uadf8\ub8f9\uc5d0\uc11c HTTP(\ud3ec\ud2b8 80)\uc640 SSH(\ud3ec\ud2b8 22) \uc811\uadfc\uc744 \ud5c8\uc6a9\ud569\ub2c8\ub2e4.\n        <\/p>\n<h4>3.3.3. \uc11c\ubc84 \uc124\uc815<\/h4>\n<p>\n            SSH\ub97c \ud1b5\ud574 EC2 \uc11c\ubc84\uc5d0 \uc811\uc18d\ud55c \ub4a4 Node.js\uc640 \ud544\uc694\ud55c \ud328\ud0a4\uc9c0\ub97c \uc124\uce58\ud569\ub2c8\ub2e4.\n        <\/p>\n<pre><code>\n            sudo apt update\n            sudo apt install nodejs npm\n            <\/code><\/pre>\n<h4>3.3.4. \ucf54\ub4dc \uc62c\ub9ac\uae30<\/h4>\n<p>\n            \ub85c\uceec \uc11c\ubc84\uc5d0\uc11c \uc791\uc131\ud55c \ucf54\ub4dc\ub97c SCP\ub97c \ud1b5\ud574 EC2 \uc778\uc2a4\ud134\uc2a4\ub85c \ubcf5\uc0ac\ud569\ub2c8\ub2e4.\n        <\/p>\n<pre><code>\n            scp -i your-key.pem -r .\/express-backend\/ ec2-user@your-ec2-ip-address:\/home\/ec2-user\/\n            <\/code><\/pre>\n<h4>3.3.5. \uc11c\ubc84 \uc2e4\ud589<\/h4>\n<p>\n            SSH\ub85c EC2\uc5d0 \uc5f0\uacb0\ud55c \ud6c4, \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \ub514\ub809\ud1a0\ub9ac\ub85c \uc774\ub3d9\ud558\uc5ec \uc11c\ubc84\ub97c \uc2e4\ud589\ud569\ub2c8\ub2e4.\n        <\/p>\n<pre><code>\n            cd express-backend\n            node app.js\n            <\/code><\/pre>\n<h4>3.3.6. \ub3c4\uba54\uc778 \uc124\uc815<\/h4>\n<p>\n            \uacf5\uc778 IP \uc8fc\uc18c \ub610\ub294 \ub3c4\uba54\uc778\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0 \uc811\uadfc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. Route 53\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub3c4\uba54\uc778\uc744 \uc124\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n        <\/p>\n<h2>4. \ubc30\ud3ec \ud6c4 \uc720\uc9c0 \uad00\ub9ac<\/h2>\n<p>\n            \ubc30\ud3ec\uac00 \uc644\ub8cc\ub41c \ud6c4\uc5d0\ub294 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc131\ub2a5\uacfc \uc548\uc815\uc131\uc744 \uc9c0\uc18d\uc801\uc73c\ub85c \ubaa8\ub2c8\ud130\ub9c1\ud558\ub294 \uac83\uc774 \uc911\uc694\ud569\ub2c8\ub2e4. \ub610\ud55c, \ud544\uc694\ud560 \uacbd\uc6b0 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc5c5\ub370\uc774\ud2b8\ud558\uace0 \ubcf4\uc548\uc744 \uc720\uc9c0\ud574\uc57c \ud569\ub2c8\ub2e4.\n        <\/p>\n<h2>5. \uacb0\ub860<\/h2>\n<p>\n            \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 Express.js\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc11c\ubc84\ub97c \uad6c\ucd95\ud558\uace0, Heroku, Vercel, AWS\uc640 \uac19\uc740 \ub2e4\uc591\ud55c \ud50c\ub7ab\ud3fc\uc5d0 \ubc30\ud3ec\ud558\ub294 \ubc29\ubc95\uc744 \ubc30\uc6e0\uc2b5\ub2c8\ub2e4. \uac01 \ud074\ub77c\uc6b0\ub4dc \uc11c\ube44\uc2a4\ub9c8\ub2e4 \uc6b4\uc601 \ubc29\uc2dd\uacfc \ubc30\ud3ec \uac00\ub2a5\uc131\uc740 \ub2e4\ub985\ub2c8\ub2e4. \ubcf8\uc778\uc758 \ud504\ub85c\uc81d\ud2b8\uc640 \uc694\uad6c \uc0ac\ud56d\uc5d0 \ub9de\ub294 \ud50c\ub7ab\ud3fc\uc744 \uc120\ud0dd\ud558\uc5ec \ubc30\ud3ec\ud558\uc138\uc694.\n        <\/p>\n<p>\n            \ucd94\uac00 \uc790\ub8cc\ub098 \uc0d8\ud50c \ucf54\ub4dc\ub294 GitHub\uc5d0 \uc5c5\ub85c\ub4dc\ud574\ub450\uc5c8\uc73c\ub2c8 \ucc38\uace0\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4. \uadc0\ud558\uc758 \uc11c\ubc84 \ubc30\ud3ec \uacbd\ud5d8\uc774 \ub354 \ud48d\ubd80\ud574\uc9c0\uae38 \ubc14\ub78d\ub2c8\ub2e4!\n        <\/p>\n<\/article>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc6f9 \uac1c\ubc1c\uc758 \ub9ce\uc740 \ubd80\ubd84\uc774 \uc11c\ubc84 \uc0ac\uc774\ub4dc \uae30\uc220\uacfc \uadf8 \ubc30\ud3ec\uc5d0 \uc758\uc874\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 Express.js\ub97c \uc0ac\uc6a9\ud558\uc5ec \ubc31\uc5d4\ub4dc \uc11c\ubc84\ub97c \uad6c\ucd95\ud558\uace0, \uc774\ub97c Heroku, Vercel, \uadf8\ub9ac\uace0 AWS \ub4f1 \ub2e4\uc591\ud55c \ud50c\ub7ab\ud3fc\uc5d0 \ubc30\ud3ec\ud558\ub294 \ubc29\ubc95\uc744 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. \uc774 \uacfc\uc815\uc740 \uc804\uccb4\uc801\uc778 \uc6cc\ud06c\ud50c\ub85c\uc6b0\ub97c \uc774\ud574\ud558\ub294 \ub370 \ub3c4\uc6c0\uc774 \ub418\uba70, \uc88b\uc740 \uac1c\ubc1c \uc2b5\uad00\uc744 \uae30\ub974\ub294 \ub370 \uc911\uc694\ud55c \uae30\ucd08\uac00 \ub420 \uac83\uc785\ub2c8\ub2e4. 1. Express.js\ub780? Express.js\ub294 Node.js \ud658\uacbd\uc5d0\uc11c \uc791\ub3d9\ud558\ub294 \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 &hellip; <a href=\"https:\/\/atmokpo.com\/w\/38388\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Express \uac1c\ubc1c \uac15\uc88c, Heroku, Vercel, AWS \ub4f1\uc744 \uc774\uc6a9\ud55c \uc11c\ubc84 \ubc30\ud3ec \ubc29\ubc95&#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-38388","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, Heroku, Vercel, AWS \ub4f1\uc744 \uc774\uc6a9\ud55c \uc11c\ubc84 \ubc30\ud3ec \ubc29\ubc95 - \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\/38388\/\" \/>\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, Heroku, Vercel, AWS \ub4f1\uc744 \uc774\uc6a9\ud55c \uc11c\ubc84 \ubc30\ud3ec \ubc29\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\uc6f9 \uac1c\ubc1c\uc758 \ub9ce\uc740 \ubd80\ubd84\uc774 \uc11c\ubc84 \uc0ac\uc774\ub4dc \uae30\uc220\uacfc \uadf8 \ubc30\ud3ec\uc5d0 \uc758\uc874\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 Express.js\ub97c \uc0ac\uc6a9\ud558\uc5ec \ubc31\uc5d4\ub4dc \uc11c\ubc84\ub97c \uad6c\ucd95\ud558\uace0, \uc774\ub97c Heroku, Vercel, \uadf8\ub9ac\uace0 AWS \ub4f1 \ub2e4\uc591\ud55c \ud50c\ub7ab\ud3fc\uc5d0 \ubc30\ud3ec\ud558\ub294 \ubc29\ubc95\uc744 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. \uc774 \uacfc\uc815\uc740 \uc804\uccb4\uc801\uc778 \uc6cc\ud06c\ud50c\ub85c\uc6b0\ub97c \uc774\ud574\ud558\ub294 \ub370 \ub3c4\uc6c0\uc774 \ub418\uba70, \uc88b\uc740 \uac1c\ubc1c \uc2b5\uad00\uc744 \uae30\ub974\ub294 \ub370 \uc911\uc694\ud55c \uae30\ucd08\uac00 \ub420 \uac83\uc785\ub2c8\ub2e4. 1. Express.js\ub780? Express.js\ub294 Node.js \ud658\uacbd\uc5d0\uc11c \uc791\ub3d9\ud558\ub294 \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 &hellip; \ub354 \ubcf4\uae30 &quot;Express \uac1c\ubc1c \uac15\uc88c, Heroku, Vercel, AWS \ub4f1\uc744 \uc774\uc6a9\ud55c \uc11c\ubc84 \ubc30\ud3ec \ubc29\ubc95&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/38388\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T17:18:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:44:27+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\/38388\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38388\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Express \uac1c\ubc1c \uac15\uc88c, Heroku, Vercel, AWS \ub4f1\uc744 \uc774\uc6a9\ud55c \uc11c\ubc84 \ubc30\ud3ec \ubc29\ubc95\",\"datePublished\":\"2024-11-01T17:18:07+00:00\",\"dateModified\":\"2024-11-26T06:44:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38388\/\"},\"wordCount\":85,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Express\uc11c\ubc84\uac1c\ubc1c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/38388\/\",\"url\":\"https:\/\/atmokpo.com\/w\/38388\/\",\"name\":\"Express \uac1c\ubc1c \uac15\uc88c, Heroku, Vercel, AWS \ub4f1\uc744 \uc774\uc6a9\ud55c \uc11c\ubc84 \ubc30\ud3ec \ubc29\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T17:18:07+00:00\",\"dateModified\":\"2024-11-26T06:44:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38388\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/38388\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/38388\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Express \uac1c\ubc1c \uac15\uc88c, Heroku, Vercel, AWS \ub4f1\uc744 \uc774\uc6a9\ud55c \uc11c\ubc84 \ubc30\ud3ec \ubc29\ubc95\"}]},{\"@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, Heroku, Vercel, AWS \ub4f1\uc744 \uc774\uc6a9\ud55c \uc11c\ubc84 \ubc30\ud3ec \ubc29\ubc95 - \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\/38388\/","og_locale":"ko_KR","og_type":"article","og_title":"Express \uac1c\ubc1c \uac15\uc88c, Heroku, Vercel, AWS \ub4f1\uc744 \uc774\uc6a9\ud55c \uc11c\ubc84 \ubc30\ud3ec \ubc29\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\uc6f9 \uac1c\ubc1c\uc758 \ub9ce\uc740 \ubd80\ubd84\uc774 \uc11c\ubc84 \uc0ac\uc774\ub4dc \uae30\uc220\uacfc \uadf8 \ubc30\ud3ec\uc5d0 \uc758\uc874\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 Express.js\ub97c \uc0ac\uc6a9\ud558\uc5ec \ubc31\uc5d4\ub4dc \uc11c\ubc84\ub97c \uad6c\ucd95\ud558\uace0, \uc774\ub97c Heroku, Vercel, \uadf8\ub9ac\uace0 AWS \ub4f1 \ub2e4\uc591\ud55c \ud50c\ub7ab\ud3fc\uc5d0 \ubc30\ud3ec\ud558\ub294 \ubc29\ubc95\uc744 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. \uc774 \uacfc\uc815\uc740 \uc804\uccb4\uc801\uc778 \uc6cc\ud06c\ud50c\ub85c\uc6b0\ub97c \uc774\ud574\ud558\ub294 \ub370 \ub3c4\uc6c0\uc774 \ub418\uba70, \uc88b\uc740 \uac1c\ubc1c \uc2b5\uad00\uc744 \uae30\ub974\ub294 \ub370 \uc911\uc694\ud55c \uae30\ucd08\uac00 \ub420 \uac83\uc785\ub2c8\ub2e4. 1. Express.js\ub780? Express.js\ub294 Node.js \ud658\uacbd\uc5d0\uc11c \uc791\ub3d9\ud558\ub294 \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 &hellip; \ub354 \ubcf4\uae30 \"Express \uac1c\ubc1c \uac15\uc88c, Heroku, Vercel, AWS \ub4f1\uc744 \uc774\uc6a9\ud55c \uc11c\ubc84 \ubc30\ud3ec \ubc29\ubc95\"","og_url":"https:\/\/atmokpo.com\/w\/38388\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T17:18:07+00:00","article_modified_time":"2024-11-26T06:44:27+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\/38388\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/38388\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Express \uac1c\ubc1c \uac15\uc88c, Heroku, Vercel, AWS \ub4f1\uc744 \uc774\uc6a9\ud55c \uc11c\ubc84 \ubc30\ud3ec \ubc29\ubc95","datePublished":"2024-11-01T17:18:07+00:00","dateModified":"2024-11-26T06:44:27+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/38388\/"},"wordCount":85,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Express\uc11c\ubc84\uac1c\ubc1c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/38388\/","url":"https:\/\/atmokpo.com\/w\/38388\/","name":"Express \uac1c\ubc1c \uac15\uc88c, Heroku, Vercel, AWS \ub4f1\uc744 \uc774\uc6a9\ud55c \uc11c\ubc84 \ubc30\ud3ec \ubc29\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T17:18:07+00:00","dateModified":"2024-11-26T06:44:27+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/38388\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/38388\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/38388\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Express \uac1c\ubc1c \uac15\uc88c, Heroku, Vercel, AWS \ub4f1\uc744 \uc774\uc6a9\ud55c \uc11c\ubc84 \ubc30\ud3ec \ubc29\ubc95"}]},{"@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\/38388","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=38388"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38388\/revisions"}],"predecessor-version":[{"id":38389,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38388\/revisions\/38389"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=38388"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=38388"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=38388"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}