
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.
starlight-api
Advanced tools
Starlight Programming Language API Utilities with GET, POST, headers, and auth
Developer: Dominex
Description: Starlight API Utilities provide a low-level and flexible HTTP client for the Starlight Programming Language. It supports HTTP and HTTPS requests with JSON handling, headers, authentication, query parameters, timeouts, and reusable API clients.
This package is designed as a foundation utility for building integrations, bots, services, and automation tools with clean and minimal code.
npm install starlight-api
import api from "starlight-api"
Or using named imports:
import { request, createClient } from "starlight-api"
` const response = await api.request({ url: "https://example.com/data" })
print(response.data) `
` const response = await api.request({ method: "POST", url: "https://example.com/api", body: { name: "Starlight", version: "1.0.0" } })
print(response.data) `
JSON bodies are automatically converted and parsed.
const response = await api.request({ url: "https://example.com/search", params: { q: "starlight", page: 1 } })
const response = await api.request({ url: "https://example.com/secure", headers: { "X-Token": "abc123" } })
const response = await api.request({ url: "https://example.com/private", auth: { username: "user", password: "pass" } })
const response = await api.request({ url: "https://example.com/slow", timeout: 5000 })
Default timeout is 15000 milliseconds.
The createClient function allows you to create a reusable API client with default settings.
` const client = createClient({ baseURL: "https://api.example.com", headers: { "Authorization": "Bearer TOKEN" } })
const users = await client.get("/users") const post = await client.post("/posts", { title: "Hello" }) `
Every request returns an object with:
FAQs
Starlight Programming Language API Utilities with GET, POST, headers, and auth
We found that starlight-api 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.