Evan Shortiss

Results 85 comments of Evan Shortiss

@ajfranzoia @danieljuhl @devlato, your input would be appreciated based on @dougwilson's latest comments on #3100. Currently #3100 is building up an Array of all matched routes as discussed in this...

@hacksparrow here are some thoughts. 1. I think populating with _req.route_ makes sense, but this example (_app.use_) is definitely a valid gap, since you do actually respond in the final...

@dougwilson @danieljuhl correct, it's to get context. For me personally I'd like to construct a string that represents the matched URL. @hacksparrow has a nice solution [here](https://github.com/pillarjs/router/pull/49) that would allow...

@hakanai I *think* I ran into a similar issue and had to rm the running container if it existed, and delete the previously built image.

This is available in the beta release of version 8. You can install and test it using `npm install env-var@beta`. Feel free to reopen this issue if necessary. EDIT: See...

@kenberkeley I have released v7.4.0 with this fix. You can now do the following for Vite environments: ``` const env = from(import.meta.env); ``` Or in React with `create-react-app`, you need...

Implemented in version 8. You can test it using `npm install env-var@beta`. I will make an official release after some more testing.

This is now available in version 8 of the module. Try it using `npm install env-var@beta`. I'll make an official version 8 release after some more testing.

@abdulrahman1s version 8 is getting close to completion. I have published a beta tag on npm. You can try it using `npm install env-var@beta`. Code is in the https://github.com/evanshortiss/env-var/tree/typescript-refactor branch

Thanks @ianriizky, what is the benefit of running async? I assume the validation is still ultimately a blocking operation, so it's just deferred for a bit? Or is it to...