Sebastiaan Marynissen
Sebastiaan Marynissen
Now that Node supports native esm imports, it makes sense that this library supports it as well. However ```js import anchorme from 'anchorme'; ``` produces an unexpected result as the...
Using ES6, it becomes possible to extend Backbone objects using ```js const MyModel = Backbone.Model.extend({ foo() { return 'bar'; } }); ``` This syntax is a nice shortcut for the...
I noticed that in the 4.4.0 release, a `timeout` flag was added: ```js socket.timeout(5000).emit("my-event", (err) => { if (err) { // the client did not acknowledge the event in the...
When a model has computed properties, it's only possible to specify dependencies that are attributes to that model. However, I have a case where it would be useful to do...
This PR fixes #3395, meaning that you can now pass subclasses of a `TypedArray` in `crypto.getRandomValues()`. This PR also checks if the [webcrypto api](https://nodejs.org/api/webcrypto.html#web-crypto-api) is available in Node.js, and if...
### Basic info: - **Node.js version:** v16.13.0 - **jsdom version:** v20.0.0 ### Minimal reproduction case ```js const { JSDOM } = require("jsdom"); const dom = new JSDOM(); class MyArray extends...
I've noticed that anchorme v3 doesn't work anymore on Safari iOS < 16.4. It throws an error ``` Invalid regular expression: invalid group specifier name ``` I've done some debugging...
When using native esm in Node, it's not possible anymore to use the pattern ```js const debug = require('debug')('namespace'); ``` and we have to do ```js import createDebug from 'debug';...
Hi there, I've noticed that Agenda doesn't support [mongodb@5](https://www.npmjs.com/package/mongodb) when creating an agenda instance like ```js import mongo from 'mongodb'; const client = new mongo.MongoClient(MONGO_URI); await client.connect(); const agenda =...
We're currently transforming www.growifier.com to be a static website, meaning that we no longer need a server for it. In order to be able to do this though, this module...