목차

node.js

주사용처

Node.js was never made to solve the compute scaling issue. It was made to tackle the I/O scaling issue, which it does extremely well. Being single-threaded, Node.js might be a bad choice for web servers serving as computational servers, since heavy computation will block the server's responsiveness.

WebSocket Proxy

분석

Install

# Ubuntu LTS
curl -sL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt-get install -y nodejs
 
# Ubuntu Current
curl -sL https://deb.nodesource.com/setup_current.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-get install -y build-essential

참조