
Company News
Jerod Santo Joins Socket as Head of Media
Allow myself to introduce... myself.
webfetch-core
Advanced tools
License-first federated image search core: ranker, cache, provider federation, pHash dedupe, EXIF/IPTC/XMP metadata.
License-aware federated image search primitives for agents, CLIs, servers, and apps.
npm install webfetch-core
import { searchImages, downloadImage } from "webfetch-core";
const results = await searchImages("apollo 11 moon", {
licensePolicy: "safe-only",
providers: ["wikimedia", "nasa", "openverse"],
maxPerProvider: 5,
});
const top = results.candidates[0];
if (top) {
const downloaded = await downloadImage(top.url);
console.log(downloaded.cachedPath, downloaded.sha256);
}
Core distinguishes open licenses from platform and editorial licenses:
CC0, PUBLIC_DOMAIN, CC_BY, CC_BY_SAUNSPLASH_LICENSE, PEXELS_LICENSE, PIXABAY_LICENSEEDITORIAL_LICENSED, PRESS_KIT_ALLOWLISTUNKNOWNUse licensePolicy: "open-only" when only Creative Commons/public-domain assets are acceptable.
Unsplash, Pexels, and Pixabay are no longer represented as CC0. They now
return UNSPLASH_LICENSE, PEXELS_LICENSE, and PIXABAY_LICENSE so callers
can separate platform terms from Creative Commons/public-domain results.
Policy behavior:
open-only: allows CC0, PUBLIC_DOMAIN, CC_BY, and CC_BY_SA.safe-only: allows open tags plus platform licenses, editorial licenses,
and press-kit allowlist results; rejects UNKNOWN.prefer-safe: keeps unsafe results but ranks safe results first.any: returns all results, including UNKNOWN.Update exhaustive License switches and persisted test fixtures before
upgrading cached results produced by older builds.
FAQs
License-first federated image search core: ranker, cache, provider federation, pHash dedupe, EXIF/IPTC/XMP metadata.
The npm package webfetch-core receives a total of 10 weekly downloads. As such, webfetch-core popularity was classified as not popular.
We found that webfetch-core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Company News
Allow myself to introduce... myself.

Research
/Security News
A Twitch browser extension on Chrome and Firefox forwards users’ live OAuth session tokens through proxies controlled by a Russian bot service.

Security News
Anthropic found biased reasoning and recklessness drove Claude Mythos 5 to publish malware on PyPI and compromise a security vendor.