fs-logger.js

Appends text to a file. Simple.

Usage no npm install needed!

<script type="module">
  import fsLoggerJs from 'https://cdn.skypack.dev/fs-logger.js';
</script>

README

fs-logger

NPM version node-current NPM downloads npm bundle size install size

Appends text to a file. Simple. 0 dependencies.

Based of fs.

Installation

Just run npm i fs-logger.js in console.

Usage

First import the module:

const log = require('fs-logger.js');

log()

(async function(){
    await log('log.txt', 'hello world');
    console.log('done!');
})();

log.txt:

hello world

log.sync()

log.sync('log.txt', 'hello world');
console.log('done!');

log.txt:

hello world
hello world