@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.
질문 및 제안
여기에서 문제를 열어주세요 .