Tampered Console
Version 2
Version 2
  • Package Overview
  • Installation
  • Usage
    • Usage Overview
    • Global Console
      • Options
  • Features
  • Namespace
  • Debug
  • Formatting
  • Inspect
  • Acknowledgement
    • Depedencies
  • GitHub
    • Repository
    • Report Issues
  • License
Powered by GitBook
On this page

Was this helpful?

  1. Usage

Usage Overview

PreviousInstallationNextGlobal Console

Last updated 3 years ago

Was this helpful?

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