Notice
Recent Posts
Recent Comments
Link
Xiao GPT
Node.js 8000포트로 연결되는 server installed 있을까? 본문
SMALL
npm install express
const express = require('express');
const app = express();
const port = 8000;
app.get('/', (req, res) => {
res.send('Hello, world!');
});
app.listen(port, () => {
console.log(`Server is running on http://localhost:${port}`);
});
node server.js
LIST
'코딩 GPT > 코딩방' 카테고리의 다른 글
CSS 이미지 중앙 정렬 코드 알려줘 (0) | 2024.10.12 |
---|