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 = findAndPrepareLogPath; ;
methods
var lib = ; // Find and prepare log path - recursively create directoriesvar findAndPrepareLogPath = libfindAndPrepareLogPath ; // Find log path - return path to log without doing anything to the filesystemvar findLogPath = libfindLogPath; ; // Find system app prefix, without constructing full path to a particular logfilevar findSystemAppPrefix = libfindSystemAppPrefix; ;
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.