Skip to content
Snippets Groups Projects
Commit c0203035 authored by tpgus2603's avatar tpgus2603
Browse files

add

parents
No related branches found
No related tags found
No related merge requests found
Pipeline #10002 failed
node_modules/
\ No newline at end of file
This diff is collapsed.
{
"name": "webback",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.ajou.ac.kr/websystem1/webback.git"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"express": "^4.21.1"
}
}
const express = require('express');
const app = express();
const PORT = process.env.PORT || 3000;
app.get('/', (req, res) => {
res.send('Hello, World!');
});
app.listen(PORT, () => {
console.log(`Server is running on http://localhost:${PORT}`);
});
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment