0.1.4 • Published 9 years ago

npmlog-file v0.1.4

Weekly downloads
24
License
MIT
Repository
github
Last release
9 years ago

npmlog-file

Build Status

Easily write npmlog output to a file in the same format as it logs to the screen

Install

$ npm install --save npmlog-file

Usage

var log = require('npmlog');
var logfile = require('npmlog-file')

// write everything npmlog has logged thus far to log.txt
logfile.write(log, 'log.txt');