Attention! Translated article might be found on my English blog.

2018年1月10日水曜日

CentOS 6にNode.jsをインストールする

Node.jsをインストールする:
# curl --silent --location https://rpm.nodesource.com/setup_8.x | sudo bash -
# yum install -y nodejs
参考: Installing Node.js via package manager | Node.js

コマンドラインから動作を確認する:

test.js:
var sys = require("sys");
sys.puts("Hello World");

# node test.js 
Hello World
(node:22537) [DEP0025] DeprecationWarning: sys is deprecated. Use util instead.
(node:22537) [DEP0027] DeprecationWarning: util.puts is deprecated. Use console.log instead. 
なお、warningはstderrの方に出ててとりあえず無視しました。

参考: Beginner's Guide to Node.js (Server-side JavaScript) - Hongkiat

CoffeeScriptをインストールする:
# npm install --global coffeescript
参考: CoffeeScript