@fibjs/ログストリーム
ファイル ストリームを非常に高性能なログ ストリームとしてラップします。
インストール
1$ npm i @fibjs/logstream --save
使用法
1
2
3
4
5
6
7
8const fs = require('fs');
const LogStream = require('@fibjs/logstream');
const fd = fs.open('path to log file', 'w');
const bf = new LogStream(fd);
bf.writeText('some log');
bf.writeLine('new line log');
bf.end();// close the log stream.
質問と提案
ここで問題を開いてください。