mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 03:32:22 +08:00
61 lines
1.7 KiB
TypeScript
61 lines
1.7 KiB
TypeScript
import FirecrawlApp, { CrawlStatusResponse, ErrorResponse } from 'firecrawl';
|
|
|
|
const app = new FirecrawlApp({apiKey: "fc-YOUR_API_KEY"});
|
|
|
|
const main = async () => {
|
|
|
|
// Scrape a website:
|
|
const scrapeResult = await app.scrapeUrl('firecrawl.dev');
|
|
|
|
if (scrapeResult.success) {
|
|
console.log(scrapeResult.markdown)
|
|
}
|
|
|
|
// Crawl a website:
|
|
const crawlResult = await app.crawlUrl('mendable.ai', { excludePaths: ['blog/*'], limit: 5});
|
|
console.log(crawlResult);
|
|
|
|
// Asynchronously crawl a website:
|
|
const asyncCrawlResult = await app.asyncCrawlUrl('mendable.ai', { excludePaths: ['blog/*'], limit: 5});
|
|
|
|
if (asyncCrawlResult.success) {
|
|
const id = asyncCrawlResult.id;
|
|
console.log(id);
|
|
|
|
let checkStatus: CrawlStatusResponse | ErrorResponse;
|
|
if (asyncCrawlResult.success) {
|
|
while (true) {
|
|
checkStatus = await app.checkCrawlStatus(id);
|
|
if (checkStatus.success && checkStatus.status === 'completed') {
|
|
break;
|
|
}
|
|
await new Promise(resolve => setTimeout(resolve, 1000)); // wait 1 second
|
|
}
|
|
|
|
if (checkStatus.success && checkStatus.data) {
|
|
console.log(checkStatus.data[0].markdown);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Map a website:
|
|
const mapResult = await app.mapUrl('https://firecrawl.dev');
|
|
console.log(mapResult)
|
|
|
|
// Crawl a website with WebSockets:
|
|
const watch = await app.crawlUrlAndWatch('mendable.ai', { excludePaths: ['blog/*'], limit: 5});
|
|
|
|
watch.addEventListener("document", doc => {
|
|
console.log("DOC", doc.detail);
|
|
});
|
|
|
|
watch.addEventListener("error", err => {
|
|
console.error("ERR", err.detail.error);
|
|
});
|
|
|
|
watch.addEventListener("done", state => {
|
|
console.log("DONE", state.detail.status);
|
|
});
|
|
}
|
|
|
|
main() |