Initial commit

This commit is contained in:
wsc-admin
2026-04-02 19:35:50 +09:00
commit fd3aa6b84f
7 changed files with 58 additions and 0 deletions

11
main.js Normal file
View File

@@ -0,0 +1,11 @@
const express = require('express')
const app = express()
const PORT = 80
app.get('/', (req, res) => {
res.json({ message: 'Hello from Node App!' })
})
app.listen(PORT, () => {
console.log(`Server running on port ${PORT}`)
})