Skip to content
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

Merged
merged 10 commits into from
Sep 10, 2024
Merged

Conversation

shortcuts
Copy link
Member

@shortcuts shortcuts commented Sep 9, 2024

🧭 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 build

in order to improve our dx, we can provide a fetch build output, as well as a worker 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.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
@shortcuts shortcuts self-assigned this Sep 9, 2024
@shortcuts shortcuts requested a review from a team as a code owner September 9, 2024 15:00
@algolia-bot
Copy link
Collaborator

algolia-bot commented Sep 9, 2024

✔️ Code generated!

Name Link
🪓 Triggered by 275029e75e2c26bcedaecc10bdb613bbf78cf361
🍃 Generated commit 48cfe7df4b23ceccd7e72b312d736a8ec4085655
🌲 Generated branch generated/feat/javascript-workerd-exports
📊 Benchmark results

Benchmarks performed on the method using a mock server, the results might not reflect the real-world performance.

Language Req/s
javascript 1612
php 1519
csharp 1225
python 1017
java 948
ruby 894
swift 776
go 568

@@ -1,15 +1,21 @@
import type { EchoResponse, EndRequest, Requester, Response } from './types';

type BasicURL = {
Copy link
Member Author

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;
Copy link
Member Author

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

Comment on lines +15 to +16
algoliaAgents: [{ segment: 'Fetch' }],
requester: createFetchRequester(),
Copy link
Member Author

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}}
Copy link
Member Author

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

Copy link
Collaborator

@millotp millotp left a 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 !

Copy link
Contributor

@Haroenv Haroenv left a 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

@shortcuts
Copy link
Member Author

the default of cjs may cause issues but it's probably ok

for the worker export? I've defaulted it to esm

@Haroenv
Copy link
Contributor

Haroenv commented Sep 10, 2024

I mean the "default" key you added to search-client etc, but I think it won't cause any issues

@shortcuts
Copy link
Member Author

I removed it in the end, it's never used when import and require is defined (thanks tsup for highlighting that D:)

@shortcuts shortcuts merged commit 8964352 into main Sep 10, 2024
29 checks passed
@shortcuts shortcuts deleted the feat/javascript-workerd-exports branch September 10, 2024 13:42
algolia-bot added a commit that referenced this pull request Sep 10, 2024
Co-authored-by: Clément Vannicatte <vannicattec@gmail.com>
algolia-bot added a commit to algolia/algoliasearch-client-javascript that referenced this pull request Sep 10, 2024
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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[bug]: Browser build is used in CF workers environment
4 participants