Node.js 中的重要API:TCP

2019-12-16

20:12:38

Node.js 中的重要API:TCP

 

 Node.js 中的重要API:TCP

 

 Node.js 中的重要API:TCP

 

 Node.js 中的重要API:TCP

 

 Node.js 中的重要API:TCP

 

 Node.js 中的重要API:TCP

 

 Node.js 中的重要API:TCP

 

 

require(‘http‘).createServer(function(req,res){
    res.writeHead(200,{‘Content-Type‘:‘text/html‘});
    res.end(‘<h1>Hello World</h1>‘);
}).listen(3000);

Node.js 中的重要API:TCP

 

 Node.js 中的重要API:TCP

 

 Node.js 中的重要API:TCP

 

/**
 * Module dependencies.
 */

var net = require(‘net‘)

/**
 * Create server.
 */

var server = net.createServer(function (conn) {
  // handle connection
  console.log(‘\033[90m   new connection!\033[39m‘);
});

/**
 * Listen.
 */

server.listen(3000, function () {
  console.log(‘\033[96m   server listening on *:3000\033[39m‘);
});

Node.js 中的重要API:TCP

 

 

 Node.js 中的重要API:TCP

 

 Node.js 中的重要API:TCP

 

 

/**
 * Module dependencies.
 */

var net = require(‘net‘)

/**
 * Keep track of connections.
 */

var count = 0;

/**
 * Create server.
 */

var server = net.createServer(function (conn) {
  conn.write(
      ‘\n > welcome to \033[92mnode-chat\033[39m!‘
    + ‘\n > ‘ + count + ‘ other people are connected at this time.‘
    + ‘\n > please write your name and press enter: ‘
  );
  count++;
  conn.on(‘close‘, function () {
    count--;
  });
});

/**
 * Listen.
 */

server.listen(3000, function () {
  console.log(‘\033[96m   server listening on *:3000\033[39m‘);
});

 

Node.js 中的重要API:TCP

 

 

 

Node.js 中的重要API:TCP

 

 

 

Node.js 中的重要API:TCP

 

 Node.js 中的重要API:TCP

Node.js 中的重要API:TCP

上一篇:WPF 让普通 CLR 属性支持 XAML 绑定(非依赖属性),这样 MarkupExtension 中定义的属性也能使用绑定了


下一篇:WIN10下安装Linux子系统并安装xface4界面