Skip to main content

init

codebolt.cbsearch.init(engine: string): void
Initializes the search module with the specified search engine.

Parameters

NameTypeDescription
enginestringThe search engine to use for initializing the module. Defaults to "bing".

Example

import codebolt from '@codebolt/codeboltjs';

function exampleInit() {
codebolt.search.init("google");
console.log("Search module initialized.");
}

exampleInit();