Socket
Book a DemoInstallSign in
Socket

rolling-file

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rolling-file

Write to a file until limits you define are reached, after which a new file is created to and written to until its limits are reached, and so on.

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

rolling-file

Write to a file until limits you've defined are reached, after which a new file is created and written to until its limits are reached, and so on. Writing is done using write streams.

Installation

npm install rolling-file

Examples

Roll by File Size

var rollingFile = require('rolling-file');
var f = rollingFile('./logs', { fileName: 'foo', byteLimit: '500 MB' });
f.write('Hello, World!');

...

f.end();

Roll by Time Interval

var rollingFile = require('rolling-file');
var f = rollingFile('./logs', { fileName: 'foo', interval: '1 day' });
f.write('Hello, World!');

...

f.end();

Roll by File Size and Time Interval

var rollingFile = require('rolling-file');
var f = rollingFile('./logs', { fileName: 'foo', byteLimit: '500 MB', interval: '1 day' });
f.write('Hello, World!');

...

f.end();

API

rollingFile ( directory, [, configuration ] )

Parameters:

  • directory - A required string that gives the directory path of where log files should be deposited.
  • configuration - A optional object that defines how the file rolling should occur.

Returns: An object with properties for writing to the data stream:

  • end ( [ content [ , callback ] ] ) - End the rolling file stream, optionally proving content and a callback function that will be called when the content has been written.
  • write ( content [ , callback ] ) - Write content to the rolling file stream, optionally proving a callback function that will be called when the content has been written.

Configuration

The configuration parameter has the following options:

  • byteLimit - The maximum size for a file in bytes before output will be put into a new file. The value must be a number, optionally followed by a metric prefix '(kilo, mega, giga, tera, peta, exa, zetta, yotta). For example: 2000000, 2G, 2 giga, 2 gigabytes, 2GB, 2000KB. The default value is 2 GB.
  • delimiter - The character to use to separate entries into the rolling file. The default value is '\n'.
  • fileEncoding - The encoding type to use on the file. All of NodeJS' encoding types are acceptable values. Defaults to 'utf8'.
  • fileName - The file name prefix to add to the start of the file.
  • fileExtension - The extension to add to the end of the file name. By default this value is '.log'.
  • interval - The size of the time interval for each file.
  • startOfDay - The time to consider as the start of the day. This does nothing unless an interval is specified.

File Naming

The naming of files is an automated process through which you have some control. You can provide a file name prefix and the file extension. A timestamp and an index are also added to the file name automatically.

The timestamp is formatted as YYYY-MM-DD-HHMMSS and it will contain the time stamp for when it was first written to if no interval is provided. If an interval is provided then the time stamp will reflect that time that lines up with that interval.

The index is added after the timestamp and is used to split multiple files that fit the same timestamp.

See below for some configurations and their potential output:

config = { fileName: 'foo', fileExtension: 'bar', byteLimit: '2 GB' };
possible_outputs = [
    'foo.2000-01-01-102345.0.bar',
    'foo.2000-01-01-102345.1.bar'
    'foo.2000-01-01-180200.0.bar'
]
config = { fileName: '', interval: '1 day', byteLimit: '500 MB' };
possible_outputs = [
    '2000-01-01-000000.0.log',
    '2000-01-01-000000.1.log',
    '2000-01-02-000000.0.log',
    '2000-01-03-000000.0.log'
];

Keywords

file

FAQs

Package last updated on 20 Jul 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts