Evan Shortiss

Results 85 comments of Evan Shortiss

Notes: * Removed ability to override built-in accessors * Set minimum engine version to Node.js 12.x * Changed extension API. Now requires invoking the extension via `usingExtension(fn)` * The `accessors`...

Deno has been on my list of things to play around with for a while now. I actually had a private repository named "denv-var" where I planned to try create...

After looking a little more at this today, it seems as though the [Binding](https://github.com/cloudevents/sdk-javascript/blob/main/src/message/index.ts#L25) might need to support a generic(s) to pass the necessary structure(s) down to the [Serializer](https://github.com/cloudevents/sdk-javascript/blob/main/src/message/index.ts#L68-L70)? Currently...

@ryanj I think maybe I need to explain this better. The issue isn't the target script, the issue is overhead of using `npm run`, since it creates two Node.js processes...

@craicoverflow exactly, this is a search query on a string field and supporting the DB-level text search would be ideal since it removes most ambiguity. > great additional plugin I'm...

That's very slick! I'll need to dig into it. Do you think it's best to implement filters like this at the app level, and not Graphback level?

Until a solution is PR'd you can simply do this if you'd like to start parsing but don't want to immediately wait for the result: ```js const dataPromise = csv().fromFile('my-data.csv')).then((result)...

This would be nice since I think I've run into an issue due to this. I have code like so: ```js const data = csv().fromFile('my-data.csv')) async function doSomeStuff (name) {...

@hacksparrow this is nice. I guess "layer" would be the event I'm looking for, but where can I associate that to the request itself here? For example, being able to...

The end goal being that I can have a middleware like so: ``` js function routeLogger (req, res, next) { res.on('finish', function () { // write to analytics, or log...