chapter 2: initial samples

This commit is contained in:
Beth Griggs
2020-04-13 15:44:06 +01:00
parent 33f5fefdec
commit 583e10b98e
69 changed files with 198 additions and 1692 deletions
@@ -0,0 +1,12 @@
const net = require('net');
const HOSTNAME = 'localhost';
const PORT = 3000;
const socket = net.connect(PORT, HOSTNAME);
socket.write('World');
socket.on('data', (data) => {
console.log(data.toString());
});
@@ -0,0 +1,13 @@
const net = require('net');
const HOSTNAME = 'localhost';
const PORT = 3000;
net.createServer((socket) => {
console.log('Client connected.');
socket.on('data', name => {
socket.write(`Hello ${name}!`);
});
}).listen(PORT, HOSTNAME);