Skip to content

Instantly share code, notes, and snippets.

View cmakh's full-sized avatar
🎒
School

Cedar cmakh

🎒
School
View GitHub Profile

Keybase proof

I hereby claim:

  • I am cmakh on github.
  • I am cmakh (https://keybase.io/cmakh) on keybase.
  • I have a public key ASDLazloYZpf-C1MyZUNoNFURezztMIPVzKwHJ77Vp-N7wo

To claim this, I am signing this object:

@cmakh
cmakh / async.js
Created November 13, 2018 01:59
Hitch Logs Async
const Hitch = require('../src');
const host = require('./host.js');
const Logger = new Hitch.Logger(host);
async function test() {
console = await Logger.connectAsync(console);
console.log('This is a test');
}
test();