
Product
Rust Support in Socket Is Now Generally Available
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.
searxng-service
Advanced tools
A TypeScript service to interact with the SearXNG search engine API, enabling customizable searches and result retrieval.
A TypeScript service to interact with the SearXNG search engine API. This service allows you to perform searches and retrieve results in various formats with customizable parameters.
npm install searxng-service
First, import and instantiate the SearxngService with your configuration:
import { SearxngService, type SearxngServiceConfig } from 'searxng-service';
const config: SearxngServiceConfig = {
baseURL: 'https://your-searxng-instance.com',
defaultSearchParams: {
format: 'json',
lang: 'auto',
},
defaultRequestHeaders: {
'Content-Type': 'application/json',
},
};
const searxngService = new SearxngService(config);
export type SearxngCategory =
| 'general'
| 'translate'
| 'web'
| 'wikimedia'
| 'images'
| 'videos'
| 'news'
| 'map'
| 'music'
| 'lyrics'
| 'radio'
| 'it'
| 'packages'
| 'q&a'
| 'repos'
| 'software_wikis'
| 'science'
| 'scientific_publications'
| 'wikimedia'
| 'files'
| 'apps'
| 'social_media';
export type SearxngEngine =
| '1337x'
| '9gag'
// Add all other engines here
| 'zlibrary';
export type SearxngLocale =
| 'af'
| 'ar'
| 'bg'
// Add all other locales here
| 'zh-Hant-TW';
export type SearxngPlugin =
| 'Hash_plugin'
| 'Self_Information'
// Add all other plugins here
| 'Tor_check_plugin';
export interface SearxngSearchParameters {
categories?: SearxngCategory[];
engines?: SearxngEngine[];
lang?: 'auto' | SearxngLocale;
pageno?: number;
time_range?: 'day' | 'month' | 'year';
format?: 'json' | 'csv' | 'rss';
results_on_new_tab?: 0 | 1;
image_proxy?: boolean;
autocomplete?: 'google' | 'dbpedia' | 'duckduckgo' | 'mwmbl' | 'startpage' | 'wikipedia' | 'stract' | 'swisscows' | 'qwant';
safesearch?: 0 | 1 | 2;
theme?: 'simple';
enabled_plugins?: SearxngPlugin[];
disabled_plugins?: SearxngPlugin[];
enabled_engines?: SearxngEngine[];
disabled_engines?: SearxngEngine[];
}
export interface SearxngSearchResult {
url: string;
title: string;
content: string;
img_src: string;
engine: string;
parsed_url: string[];
template: string;
engines: string[];
positions: number[];
score: number;
category: string;
pretty_url: string;
open_group?: boolean;
close_group?: boolean;
}
export interface SearxngSearchResults {
query: string;
number_of_results: number;
results: SearxngSearchResult[];
answers: string[];
corrections: string[];
infoboxes: Array<{
infobox: string;
content: string;
engine: string;
engines: string[];
}>;
suggestions: string[];
unresponsive_engines: string[];
}
export interface SearxngServiceConfig {
baseURL: string;
defaultSearchParams?: Partial<SearxngSearchParameters>;
defaultRequestHeaders?: Record<string, string>;
}
Perform a search with the given input query and optional parameters.
async search(
input: string,
params?: Partial<SearxngSearchParameters>,
): Promise<SearxngSearchResults>
input (string): The search query string.params (Partial, optional): Optional additional query parameters.Returns a promise that resolves to SearxngSearchResults.
import { SearxngService, type SearxngServiceConfig } from 'searxng-service';
const config: SearxngServiceConfig = {
baseURL: 'https://your-searxng-instance.com',
defaultSearchParams: {
format: 'json',
lang: 'auto',
},
defaultRequestHeaders: {
'Content-Type': 'application/json',
},
};
const searxngService = new SearxngService(config);
async function performSearch() {
try {
const results = await searxngService.search('example query');
console.log(results);
} catch (error) {
console.error('Search failed:', error);
}
}
performSearch();
import { SearxngService, type SearxngServiceConfig } from 'searxng-service';
const config: SearxngServiceConfig = {
baseURL: 'https://your-searxng-instance.com'
};
const searxngService = new SearxngService(config);
async function performSearchWithParams() {
const searchParams = {
categories: ['general', 'web'],
engines: ['google', 'bing'],
lang: 'en',
pageno: 2,
time_range: 'month',
format: 'json',
};
try {
const results = await searxngService.search('example query', searchParams);
console.log(results);
} catch (error) {
console.error('Search failed:', error);
}
}
performSearchWithParams();
FAQs
A TypeScript service to interact with the SearXNG search engine API, enabling customizable searches and result retrieval.
The npm package searxng-service receives a total of 0 weekly downloads. As such, searxng-service popularity was classified as not popular.
We found that searxng-service demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.

Research
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.