Eric Satterwhite
Eric Satterwhite
There is nothing built into nats that supports monitoring a cluster inherently, you have to use `/connz` which returns a list of servers in the cluster and monitor all of...
Something very similar happens when using [pnpm](https://pnpm.js.org/en/). pnpm creates a hidden directory in `node_modules` and links things up to `node_modules` ```shell config/release-config-logdna/node_modules/ ├── @eslint │ └── eslintrc -> ../.pnpm/@eslint/[email protected]/node_modules/@eslint/eslintrc ├──...
I've always been of the thought to construct query strings in a way to made it as easy on both the client and server as possible. In the context of...
Ah interesting. I have a couple issues with that. Periods have meaning in most written and programming languages. Which can lead to confusion or security holes. Also, the periods are...
@O1O1O1O That is pretty neat. But there is some odd syntax there that doesn't sit too well with me ``` (foo=3|foo=bar)&price=lt=10 ``` this has `price=lt=10` which seems incorrect and gives...
For my tastes, I don't see to much value in not leveraging as much of the standard convention of `=`. also with this syntax ``` (priority__eq(1)|city__eq('Redmond')) ``` the parens are...
It seems like a lot of the weirdness / complexity comes from trying to support Rhino. Is there really a need to keep support for Rhino any longer?
I wasn't referring to the jsdoc parsing bits specifically. Everything in **not** in `lib/jsdoc`, with exception to stuff in `utils` seems really suspect to problems between runtimes. It looks like...
@75lb I was looking more for a way to just configure and run jsodc programmatically more so than have to parse the out put.
@75lb can jsdoc-api render out the static html site as well? Never mind I see it. This might do. I can glob search for and spit out the html. It...