Matt Bishop
Matt Bishop
Mongo has the ability to search for a specific array value, meaning arrays that have the same elements in the same order: https://docs.mongodb.com/manual/tutorial/query-arrays/#match-an-array If I run a similar query with...
SQL/JSONPath, part of SQL 2016, is a simplification of JSON Path that removes recursive descent (`..`), replaces negative array seeking with `last` and remakes array `length` to `size()`. An older...
This long-standing feature of HTTP responses is getting new life, and it would be great to support it in Oak. It's useful for streamed responses when one doesn't know the...
Node offers an AbortSignal API that gives async operations a way to cancel their progress if aborted by the caller. Common use cases are web apps that see their request...
One thing I love about node-postgres is it's streaming result sets. I have applications that select thousands of rows and I don't want them all in a single result array....
Given js.spec is a node module, nobody is going to `` it into a browser directly. Instead they will use their own packaging toolchain to do so like browserfy or...
I'm using map() to spec classes that have fields but I am getting rejected because it eventually uses lodash's `isPlainObject()` does not like my class instance. I tracked it down...
js-spec.online has no docs for these two regex methods. They are exported from `spec` so they should be documented.
The docs for "or" look like this: or (name, ...specs) nr > 1000 })``` Perhaps or should be: or(name, {key1: spec, key2: spec...})