参考: Installing Node.js via package manager | Node.js# curl --silent --location https://rpm.nodesource.com/setup_8.x | sudo bash -# yum install -y nodejs
コマンドラインから動作を確認する:
test.js:
でvar sys = require("sys");sys.puts("Hello World");
なお、warningはstderrの方に出ててとりあえず無視しました。# node test.jsHello World(node:22537) [DEP0025] DeprecationWarning: sys is deprecated. Use util instead.(node:22537) [DEP0027] DeprecationWarning: util.puts is deprecated. Use console.log instead.
参考: Beginner's Guide to Node.js (Server-side JavaScript) - Hongkiat
CoffeeScriptをインストールする:
参考: CoffeeScript# npm install --global coffeescript