project structure

This commit is contained in:
2025-02-05 16:14:06 +01:00
parent e68445d8ad
commit f4749ee37d
5 changed files with 43 additions and 0 deletions

8
src/app.js Normal file
View File

@ -0,0 +1,8 @@
const express = require('express')
const app = express()
app.get('/', function(request,result){
result.send('Hello World!')
})
app.listen(3333,"127.0.0.1",function(){
console.log('hello world')
})