Mark Wylde

Results 14 issues of Mark Wylde

I'm not sure of the exact reasons why but when I tried to use dockstation my certificate was rejected with the following error: ``` OPENSSL_internal:DECODE_ERROR ``` To solve this I...

Really nice project. One of the main benefits to having types in code is that during compile time (or during your transpiling process) you can be warned of places where...

How do you do dynamic titles? The layout template we are using has something like: ```html ``` We are then injecting in the title like: ```html Example ``` I would...

Thanks for all your work on sucrase. It's an amazing project. I'm a big fan of [c8](https://github.com/bcoe/c8) for code coverage checking, and it works almost perfectly with sucrase. Unfortunately, when...

Hey, The ejdb test suite is running perfectly as always on node 16, but I've just tried using the latest version of node (v18.7.0) and it gives the following: ```...

bug

I came across a weird issue where I was storing a document that had a property with weird characters in it. I created a [pull request](https://github.com/Softmotions/ejdb/pull/296), but @adamansky had a...

Thanks for all the work on this project. I've only just discovered it and I think it's fantastic. The speed and simplicity of getting started (in node at least) was...

needcontrib
feature request

ejdb provides a regex (`re`) query option that can be used like: ``` /[domain re :?] ``` Would it be possible/easy to offer this in reverse? ``` /[:? re domain]...

feature request

I'm trying to build out dynamic (user inputted) projections and am wondering if there is a way of matching projections via a safe escaping. Like we can do for queries....

I'm trying to use Axios to make http calls and have the following code. ```javascript const axios = require('axios') async function main () { await axios(`https://example.com/xxxxxxxx`) } main() ``` It...