added some testing code to see if node works

This commit is contained in:
janis
2022-11-07 12:52:01 +01:00
parent cd6acca5d5
commit e71f8219d4

View File

@@ -28,6 +28,10 @@ app.get('/projects/css/:file', (request, response) => {
response.sendFile(path.join(__dirname + "/css/" + request.params.file))
})
app.get('/test/test', (request, response) => {
response.send("THIS WORKS!")
})
http.createServer(
app