Linus Unnebäck

Results 747 comments of Linus Unnebäck

This looks really nice! I've created an account at their GitLab server to ask about it, waiting for the account to get approved

Hehe, yes! I absolutely plan to have an npm package! The reason for not writing this in Node.js was that the startup up time was too long :) I think...

Just curious, are you using macOS, Linux or Windows?

Currently only available for macOS, but I have now published this to npm: - https://github.com/LinusU/npm-emoji-commit - https://npmjs.com/package/emoji-commit

Yes, the same value that's being passed to `addEventListener` must be passed to `removeEventListener`. If there is a function that will be called when the instance is created (haven't used...

Would be awesome if we could integrate this with [`ios-deploy`](https://github.com/phonegap/ios-deploy) as well, to run on an actual device.

This is what we are currently doing in our tests, to be able to use [albatross](https://github.com/LinusU/node-albatross) with mongo-mock: ```js /* eslint-disable @typescript-eslint/no-var-requires */ require('mongo-mock').max_delay = 0 require('mongodb').MongoClient = require('mongo-mock').MongoClient require('mongodb').ObjectId...

> get connection refused. This library doesn't actually connect to anything, so it shouldn't be able to give you "connection refused" Could you post the stacktrace of the error you...

I've tracked down the problem to somewhere inside the [`modifyjs` dependency](https://github.com/lgandecki/modifyjs#readme): ```js console.error('original', original) console.error('updates', updates) var updated = modifyjs(original, updates); console.error('updated', updated) ``` ```text original { name: 'Test', _id:...

Okay, the problem is that `bson-objectid` `ObjectId` loses their internal data when they are [`clone`](https://github.com/pvorb/clone)d. This doesn't seem to be a problem with `ObjectId` from the official [`bson` package](https://www.npmjs.com/package/bson).