jer-sen

Results 57 comments of jer-sen

Yes ! It would be better than https://github.com/dim13/otpauth

Yes but I think it won't work without the full path. The solution should be: ``` import { createContext } from 'isoworker/esm/browser.js' ``` But it's an extraneous import so it's...

With `from 'isoworker'` `esm/browser.js` is found but since the import is not a precise file, only default export can be reached (which is `undefined`). Trying to import a specific export...

@andresusanto I don't see any issue to remove the file extensions, it's a serverside module https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import

@andresusanto you are right. Relative and absolute specifiers must have a file extension (in the build directories) but this does not apply to bare specifiers. So graphql module should be...

@dnalborczyk sorry I realy don't have time for that. Also the best would be to make it configurable but it would take me a lot of time to dig into...

I don't think it can be supported by node.js. It is the recommended way to use MongoDB with handlers using a callback cf https://www.mongodb.com/docs/atlas/manage-connections-aws-lambda/ But you are right, with async...

> > > serverless-offline ignores `callbackWaitsForEmptyEventLoop` value and always act as if `callbackWaitsForEmptyEventLoop` was set to `false` > > not quite sure if `false` covers the case tho, because as...

> this is not a serverless-offline only issue? With `--reloadHandler` you can have a lot of instances, and AFAIK there is no concurrency limit in serverless-offline. So there can be...