will Farrell

Results 170 comments of will Farrell
trafficstars

Workaround: ```js const jsMinify = require('terser').minify; const htmlMinify = require('html-minifier').minify; const htmlMinifyOptions = { ... minifyJS: (text, inline) => { const res = jsMinify(text, { warnings: true }) if (res.warnings)...

@CalebBassham Thanks for sharing! I use terraform for everything and was hoping to avoid using APIG for simplicity. AWS SecurityHub has also been complaining the Lambda using Function URL for...

Something I noted to AWS was that your can't whitelist query strings with `/` or `~` (not url encoded) into the CloudFront origin request policy, indicating it might not just...

Integrated this feature into https://github.com/willfarrell/alfred-youtube-workflow Please let me know if it needs tweaking.

Are you both using TypeScript? From my understanding TS transpiles (tsc?) to commonJS first before importing dependencies, which would cause this issue.

Does the sample compiler options found at https://middy.js.org/docs/intro/typescript/ need to be updated? If so, a PR would be most welcome.

I've run into this same issue. I found http://sqlrelay.sourceforge.net/sqlrelay/programming/nodejs.html#storedprocedures, not on npm, may help in getting this feature implemented.

I put the stored procedure part of my project on the back burner for now. There are two options I plan to try when I revisit. 1. sqlrelay - Ask...

Can we swap in https://oldpiratebay.org as a fix for now?

We have no plans to re-induce cjs support. However, the nodejs team may have a solution for you in version 22 with the new `--experimental-require-module` flag. From my understanding this...