Giter VIP home page Giter VIP logo

app-log-dir's Introduction

app-log-dir

Node.js: get system-specific application logging directories. Supports Windows, Linux, Mac.

In Node.js applications (CLI utilities, electron applications, ...) it is useful to get references to consistent, system-specific application logging paths.

Inspired by electron-log.

example

Create a logger

var findAndPrepareLogPath = require('app-log-dir').findAndPrepareLogPath;

findAndPrepareLogPath('myAppName', ['prefixed', 'log', 'directory', 'log1.txt'], function (err, logpath) {
  if (err) {
    console.log('Could not get log path - critical error!');
    process.exit(-1);
  }

  var logger = fs.createWriteStream(logpath);
  logger.write('Application started\n');

  // continue ...
});

methods

var lib = require('app-log-dir');

// Find and prepare log path - recursively create directories
var findAndPrepareLogPath = lib.findAndPrepareLogPath

findAndPrepareLogPath('AppName', ['my-app-logs', Date.now(), 'log.txt'], function (err, path) {
  // ...
});

// Find log path - return path to log without doing anything to the filesystem
var findLogPath = lib.findLogPath;

findLogPath('AppName', ['my-app-logs', Date.now(), 'log.txt'], function (err, path) {
  // ...
});

// Find system app prefix, without constructing full path to a particular logfile
var findSystemAppPrefix = lib.findSystemAppPrefix;

findSystemAppPrefix('AppName', function (err, path) {
  // ...
});

usage

This package also ships with three commands:

  Usage: find-system-app-prefix [options] [command]


  Commands:

    find-system-app-prefix <appName>  find directories for a log path, prefixed under `appName`
    help [cmd]                        display help for [cmd]

  Options:

    -h, --help     output usage information
    -V, --version  output the version number

example:

$ find-system-app-prefix MyAppName
< /Users/joshuagross/Library/Logs/MyAppName
  Usage: find-log-path [options] [command]


  Commands:

    find-log-path <appName> [...logParts]  find directories for a log path, prefixed under `appName`, and using `logParts` as parts of the log filename
    help [cmd]                             display help for [cmd]

  Options:

    -h, --help     output usage information
    -V, --version  output the version number

example:

$ find-log-path MyAppName path to prefixed log file log.txt
/Users/joshuagross/Library/Logs/MyAppName/path/to/prefixed/log/file/log.txt
  Usage: find-and-prepare-log-path [options] [command]


  Commands:

    find-and-prepare-log-path <appName> [...logParts]  find and create directories for a log path, prefixed under `appName`, and using `logParts` as parts of the log filename
    help [cmd]                                         display help for [cmd]

  Options:

    -h, --help     output usage information
    -V, --version  output the version number

example:

$ find-and-prepare-log-path MyAppName path to prefixed log file log.txt
/Users/joshuagross/Library/Logs/MyAppName/path/to/prefixed/log/file/log.txt

License

Released under MIT license. See LICENSE file.

app-log-dir's People

Contributors

joshuagross avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.