-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(javascript): add workerd exports #3680
Conversation
✔️ Code generated!
📊 Benchmark resultsBenchmarks performed on the method using a mock server, the results might not reflect the real-world performance.
|
@@ -1,15 +1,21 @@ | |||
import type { EchoResponse, EndRequest, Requester, Response } from './types'; | |||
|
|||
type BasicURL = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
propose names if you want, it's mostly to avoid importing URL from anywhere
initRecommend: (initOptions: InitClientOptions)=> RecommendClient; | ||
initAnalytics: (initOptions: InitClientOptions & InitClientRegion<AnalyticsRegion>)=> AnalyticsClient; | ||
initAbtesting: (initOptions: InitClientOptions & InitClientRegion<AbtestingRegion>)=> AbtestingClient; | ||
initRecommend: (initOptions?: InitClientOptions)=> RecommendClient; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it forced us to pass an empty object, everything in here is partial
algoliaAgents: [{ segment: 'Fetch' }], | ||
requester: createFetchRequester(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
only two lines that differ from the node implem
hostsCache: createMemoryCache(), | ||
...options, | ||
}), | ||
{{#nodeSearchHelpers}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
crypto is pollyfilled on cloudflare workers, so all good for now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
truth is, I don't understand any of this, gg !
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the default of cjs may cause issues but it's probably ok
for the worker export? I've defaulted it to esm |
I mean the "default" key you added to search-client etc, but I think it won't cause any issues |
I removed it in the end, it's never used when import and require is defined (thanks tsup for highlighting that D:) |
Co-authored-by: Clément Vannicatte <vannicattec@gmail.com>
algolia/api-clients-automation#3680 Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Clément Vannicatte <vannicattec@gmail.com>
🧭 What and Why
🎟 JIRA Ticket: https://algolia.atlassian.net/browse/DI-2890 https://algolia.atlassian.net/browse/DI-2895
Changes included:
closes algolia/algoliasearch-client-javascript#1548
this pr contains a few changes in few lines, sorry for the mess, but it's all related.
fetch
buildin order to improve our dx, we can provide a
fetch
build output, as well as aworker
exports (which should also work for the cloudflare workers). this allows the user to directly load the client rather than having to manually setup fetch.manual testing
the manual testing is just a harness since the dependency clients are already tested, but in order to remove redundancy, common cases are moved to the
algoliasearch.common.test.ts
file.worker testing
cloudflare workers provide a miniflare instance for testing, pretty easy to setup, that at least allows us to ensure it's properly starting when loading the fetch client.