
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
icelist-sdk
Advanced tools
JavaScript/TypeScript client library for the ICE List Wiki API.
npm install @icelist/sdk
# or
yarn add @icelist/sdk
import { IceListClient } from "@icelist/sdk";
const client = new IceListClient();
// Search for content
const results = await client.search("Timothy Donahue");
results.forEach((result) => {
console.log(`${result.title}: ${result.snippet}`);
});
// Get a specific page
const page = await client.getPage("Main_Page");
console.log(page.title);
console.log(page.extract);
// Get full page content
const content = await client.getPageContent("Main_Page");
console.log(content.wikitext);
console.log(content.html);
// List category members
const agents = await client.getCategoryMembers("Agents", 50);
agents.forEach((agent) => {
console.log(agent.title);
});
// Get recent changes
const changes = await client.getRecentChanges(10);
changes.forEach((change) => {
console.log(`${change.title} - ${change.timestamp}`);
});
const { IceListClient } = require("@icelist/sdk");
const client = new IceListClient();
async function main() {
const results = await client.search("agents");
console.log(results);
}
main();
<script type="module">
import { IceListClient } from "https://cdn.skypack.dev/@icelist/sdk";
const client = new IceListClient();
const results = await client.search("incidents");
console.log(results);
</script>
new IceListClient(options?)Create a new client instance.
Options:
baseUrl?: string - Base URL of the wiki (default: https://wiki.icelist.is)userAgent?: string - Custom user agent stringtimeout?: number - Request timeout in milliseconds (default: 30000)client.search(query, limit?): Promise<SearchResult[]>Search for pages matching a query.
Returns: Array of search results with title, snippet, timestamp, etc.
client.getPage(title): Promise<PageInfo>Get basic information about a page.
Returns: Page metadata including title, extract, and URL.
client.getPageContent(title): Promise<PageContent>Get full page content in both wikitext and HTML.
Returns: Object with wikitext and rendered HTML.
client.getCategoryMembers(category, limit?, namespace?): Promise<CategoryMember[]>List all pages in a category.
Returns: Array of pages in the category.
client.getRecentChanges(limit?): Promise<RecentChange[]>Get recent changes to the wiki.
Returns: Array of recent changes with metadata.
import {
IceListClient,
IceListAPIError,
PageNotFoundError,
NetworkError,
InvalidParameterError,
} from "@icelist/sdk";
const client = new IceListClient();
try {
const page = await client.getPage("NonexistentPage");
} catch (error) {
if (error instanceof PageNotFoundError) {
console.log(`Page not found: ${error.title}`);
} else if (error instanceof IceListAPIError) {
console.log(`API error: ${error.code} - ${error.message}`);
}
}
# Install dependencies
npm install
# Build
npm run build
# Run tests
npm test
# Run tests with coverage
npm run test:coverage
# Lint
npm run lint
# Format
npm run format
MIT License
FAQs
JavaScript/TypeScript client library for the ICE List Wiki API
We found that icelist-sdk 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.
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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.