# 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](https://tampered-console.js.org/v2/namespace).
