Home > 備忘録 > 言語関連 > nodejs に関すること > node.js のインストール( 41 )
[root@server]# dnf install nodejs npm[root@server]# cd /xxx/yyyy/xxx/yyyy/hello.js
console.log("Hello world");[root@/yyyy]$ node hello.js[root@server]# npm install --prefix /xxx/yyyy date-utils/xxx/yyyy/hello.js
#!/usr/bin/env node
'use strict'; // 未定義の変数の使用を禁止する
require('date-utils');
var dt=new Date();
var formatted=dt.toFormat("YYYY年MM月DD日 HH24時MI分SS秒");
console.log(formatted);[root@server]# /xxx/yyyy/hello.js| Your IP Address |
| 216.73.216.111 |