Node.jsの組み込みモジュールであるfsモジュールのwriteFileSyncメソッドを用いることで、
文字列の配列をテキストファイルとして書き出します。
手順
以下のコマンドを実行して、必要なパッケージをインストールする。
npm install -D @types/node
ファイルを作成し、以下のように編集する。
import fs from 'fs';
const lines = ['1行目', '2行目', '3行目'];
const text = lines.join('\n');
fs.writeFileSync('export.txt', text);
実行すると、以下のような内容のexport.txtというファイルが書き出される。
1行目
2行目
3行目
参考
- File system | Node.js v20.4.0 Documentation
https://nodejs.org/api/fs.html#fswritefilesyncfile-data-options