Skip to content

Commit

Permalink
Change test node js code (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
gitricko authored Jun 3, 2024
1 parent 2e47398 commit dcbd067
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 297 deletions.
13 changes: 13 additions & 0 deletions test-src/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const express = require('express')
const app = express()
const port = 3000

app.disable("x-powered-by");

app.get('/', (req, res) => {
res.send('Hello World!')
})

app.listen(port, () => {
console.log(`Example app listening on port ${port}`)
})
297 changes: 0 additions & 297 deletions test-src/server.js

This file was deleted.

0 comments on commit dcbd067

Please sign in to comment.