
Company News
Socket Joins New OpenJS Program to Fund Node.js Security Work
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.
@galaxy-stack/orbit-http-client
Advanced tools
Typed HTTP client for Orbit — fetch wrapper with retries, timeouts, interceptors
Typed HTTP client for Orbit — fetch wrapper with retries, timeouts, and interceptors.
Part of the Orbit framework — a NestJS-style backend framework for Bun.
bun add @galaxy-stack/orbit-http-client
import { HttpClientModule, HttpClient, Module } from '@galaxy-stack/orbit-http-client';
@Module({
imports: [HttpClientModule.forRoot({ baseUrl: 'https://api.example.com', retries: 2, timeoutMs: 5000 })],
})
export class AppModule {}
// anywhere with DI:
constructor(private http: HttpClient) {}
const res = await this.http.get<User[]>('/users', { query: { page: 1 } });
await this.http.post('/users', { name: 'orbit' });
Features: JSON serialization/parsing, query params, request/response interceptors, exponential-backoff retries (5xx + 429), timeout via AbortController, typed responses, throwOnError toggle.
MIT
FAQs
Typed HTTP client for Orbit — fetch wrapper with retries, timeouts, interceptors
We found that @galaxy-stack/orbit-http-client 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
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.