Socket
Socket
Sign inDemoInstall

console-monkey-patch

Package Overview
Dependencies
0
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    console-monkey-patch

Node.js module monkeypatching the console object


Version published
Weekly downloads
37
decreased by-15.91%
Maintainers
2
Install size
3.47 kB
Created
Weekly downloads
 

Readme

Source

Build Status

console-monkey-patch

Hack the console object methods (like log, error, info etc.).

Abstract

In Node.js it is sometime desirable to redirect console.log & Co. calls to a given stream but not possible to actually replace stdout and/or stderr. This module allow to override console methods in a simple way.

Installation

npm install console-monkey-patch

Simple example

The most simple example is to create a new console.Console object (see https://nodejs.org/api/console.html#console_class_console):

var fs = require("fs");
var newstdout = fs.createWriteStream('/tmp/stdout.log', {flags: 'a'});
var newstderr = fs.createWriteStream('/tmp/stderr.log', {flags: 'a'});
var newcons   = new console.Console(newstdout, newstderr);

require("console-monkey-patch")(newcons);

console.log('this should go to /tmp/stdout.log');
console.error('this should go to /tmp/stderr.log');

Limitations

The module only override the console methods documented at https://nodejs.org/api/console.html and does not replace process.stdout and process.stderr. As a result, code (including modules) using directly theses streams won't be "affected".

LICENSE

MIT, see MIT-LICENSE.

Keywords

FAQs

Last updated on 01 Jun 2017

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