get_first_link
codebolt.search.get_first_link(query: string): Promise<string>
Retrieves the first link from the search results for the given query.
Parameters
Name | Type | Description |
---|---|---|
query | string | The search query. |
Returns:
Promise<string>
A promise that resolves with the first link of the search results.Example
import codebolt from '@codebolt/codeboltjs';
async function exampleGetFirstLink() {
try {
const firstLink = await codebolt.bsearch.get_first_link("JavaScript documentation");
console.log("First link:", firstLink);
} catch (error) {
console.error("Failed to retrieve the first link:", error);
}
}
exampleGetFirstLink();