Usage Overview

Tampered Console is just like any other packages. Require it and use it as if you are using the native console. It can also be instantiated with the new operator to create namespaces.

const Console = require('tampered-console');
Console.log('hello world!');
const Console = require('tampered-console');
new Console('namespace').log('hello world!');

Learn about namespace here.

Last updated