You can create an object of the class simply by using the namespace new Monster.Logging.Handler.ConsoleHandler()
.
<script type="module">
import {Monster} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.30.0/dist/monster.js';
console.log(new Monster.Logging.Handler.ConsoleHandler())
</script>
Alternatively, you can also integrate this class individually.
<script type="module">
import {ConsoleHandler} from 'https://cdn.jsdelivr.net/npm/@schukai/monster@1.30.0/dist/modules/logging/handler/console.js';
console.log(new ConsoleHandler())
</script>