Browse Source

server

master
Ken Schaefer 9 months ago
parent
commit
af8552aab4
  1. 0
      section-01-intro/first-app.js
  2. 0
      section-01-intro/hello.txt
  3. 0
      section-02-javascript/syntax.js
  4. 7
      section-03-basic-node/app.js

0
Section 01 - Intro/first-app.js → section-01-intro/first-app.js

0
Section 01 - Intro/hello.txt → section-01-intro/hello.txt

0
Section 02 - JavaScript/syntax.js → section-02-javascript/syntax.js

7
section-03-basic-node/app.js

@ -0,0 +1,7 @@
const http = require('http');
const server = http.createServer((req, res) => {
console.log(req);
});
server.listen(3000);
Loading…
Cancel
Save