hijackdeprecated

Stub Node.js module.

Usage no npm install needed!

<script type="module">
  import hijack from 'https://cdn.skypack.dev/hijack';
</script>

README

Stub Node.js module Build Status

Stub Node.js module.

Installation

npm install hijack

Example

var hijacked = hijack.require('util');

hijacked.replace('log', function(message) {
    console.log('I am hijacked [' + message + ']!');
});

util.log('Timestamped message.');

hijack.restore();