Windows11でscopeからnode.jsをインストールした話

JavaScript コンピュータ
JavaScript

名前で検索したところ複数ヒット

PS F:\git\memoClone\memo> scoop search nodejs
Results from local buckets...

Name           Version                          Source   Binaries
----           -------                          ------   --------
nodejs-lts     22.11.0                          main
nodejs         23.2.0                           main
nodejs-nightly 24.0.0-nightly20241118746b17e1a5 versions
nodejs010      0.10.48                          versions
nodejs012      0.12.18                          versions
nodejs10       10.24.1                          versions
nodejs11       11.15.0                          versions
nodejs12       12.22.12                         versions
nodejs14       14.21.3                          versions
nodejs16       16.20.2                          versions
nodejs18       18.20.5                          versions
nodejs20       20.18.0                          versions
nodejs22       22.11.0                          versions
nodejs4        4.9.1                            versions
nodejs5        5.12.0                           versions
nodejs6        6.17.1                           versions
nodejs7        7.10.1                           versions
nodejs8        8.17.0                           versions
nodejs9        9.11.2                           versions

nodejsをインストールすることにする。

scoop install nodejs

インストールされたことを確認するためにバージョンを表示してみる。

PS F:\git\memoClone\memo> node --version
v23.3.0

Node.jsでHello World
ファイル名:hello.js

console.log("Hello World!");

実行

PS F:\git\node> node hello.js
Hello World!

テキストファイルの読み込み
ファイル名:fileread.js

const fs = require('fs');

let buff = fs.readFileSync("fileread.js", 'utf-8');
console.log(buff);

実行

PS F:\git\node> node fileread.js
const fs = require('fs');

let buff = fs.readFileSync("fileread.js", 'utf-8');
console.log(buff);

node.jsは本来JavaScriptでサーバーサイドのプログラムを書くものらしいですが、コンソールで動く普通のスクリプト言語としても使えそうな感じがします。

コメント