Socket
Socket
Sign inDemoInstall

file-timestamp-stream

Package Overview
Dependencies
15
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    file-timestamp-stream

Writing stream with file rotating based on timestamp


Version published
Maintainers
1
Install size
304 kB
Created

Changelog

Source

v1.2.0 2018-09-12

  • New streams are WriteStream so close method can be used instead end.

Readme

Source

file-timestamp-stream

Build Status Coverage Status npm

This module creates stream.Writable to a file which is automatically rotated based on current time.

Requirements

This module requires ES6 with Node >= 6.

Installation

npm install file-timestamp-stream

Additionally for Typescript:

npm install -D @types/node

Transpiling this module with own settings in tsconfig.json:

{
  "compilerOptions": {
    "paths": {
      "file-timestamp-stream": ["node_modules/file-timestamp-stream/src/file-timestamp-stream"]
    }
  }
}

Usage

Example:

const { FileTimestampStream } = require('file-timestamp-stream')

Typescript:

import FileTimestampStream from 'file-timestamp-stream'

Options

  • newFilename is a custom function with this object as an only argument which returns new filename (default: returns new filename based on path and current time)
  • flags is a string with flags for opened stream (default: 'a')
  • fs is a custom fs module (optional)
  • path is a template for new filenames (default: 'out.log')

Example:

Basic path based on strftime parameters:

const stream = new FileTimestampStream({
  path: '%Y-%m-%dT%H.log',
  flags: 'a'
})

Custom filename generator:

const strftime = require('ultra-strftime')

// count how many files was created
let counter = 0

const stream = new FileTimestampStream({
  path: '%Y-%m-%dT%H:%M.log',
  newFilename
})

function newFilename (fileTimestampStream) {
  const filename = strftime(fileTimestampStream.path)
  if (filename !== fileTimestampStream.currentFilename) counter++
  return filename
}

Properties

  • currentFilename contains last opened filename
  • stream contains fs.WriteStream object

Path template format

Path can contain strftime specifiers.

License

Copyright (c) 2017-2018 Piotr Roszatycki piotr.roszatycki@gmail.com

MIT

Keywords

FAQs

Last updated on 12 Sep 2018

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc