> For the complete documentation index, see [llms.txt](https://tampered-console.js.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tampered-console.js.org/v2/usage/overview.md).

# 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.

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

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

Learn about namespace [here](/v2/namespace.md).
