This commit is contained in:
Yrobot
2025-12-07 00:13:06 +08:00
parent d8e667106a
commit fec8d0cbe0
12 changed files with 1099 additions and 0 deletions

18
utils/dev.js Normal file
View File

@@ -0,0 +1,18 @@
// HTTPS_PROXY=http://localhost:7777 bun ./output/cloudflare-search/utils/dev.js
import searchBrave from "./searchBrave.js";
import searchGoogle from "./searchGoogle.js";
import searchDuckDuckGo from "./searchDuckDuckGo.js";
import searchBing from "./searchBing.js";
const query = "yrobot 博客";
(async () => {
const results = await searchBing({
query,
});
console.log({ results });
})().catch((err) => {
console.error(err);
process.exit(1);
});