2
0

A new recipe added: nodejs_mongodb_mongoxp.

This commit is contained in:
2025-03-05 20:44:54 +01:00
parent 05431b716d
commit e3b0dd03de
12 changed files with 472 additions and 0 deletions

View File

@ -0,0 +1,4 @@
# Ignore everything in this directory except this folders.
*
!.gitignore
!volumes

View File

@ -0,0 +1,5 @@
# Ignore everything in this directory except this folders.
*
!.gitignore
!nodejs-apps
!mongodb-data

View File

@ -0,0 +1,3 @@
# Ignore everything in this directory except this folders.
*
!.gitignore

View File

@ -0,0 +1,4 @@
# Ignore everything in this directory except this folders.
*
!.gitignore
!helloworld.js

View File

@ -0,0 +1,11 @@
/*
A humble test web application.
https://www.w3schools.com/nodejs/nodejs_get_started.asp
*/
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('Hello World!');
}).listen(8080);