AUR5000
Error Message
Description
Common Scenarios
Node.js Environments (pre-18)
// Node.js versions before 18 don't have global fetch
import { HttpClient } from '@aurelia/fetch-client';
// This will throw AUR5000
const client = new HttpClient();Server-Side Rendering
Solutions
1. Use Node.js 18+ (Recommended)
2. Install a Fetch Polyfill
3. Configure Custom Fetch Implementation
4. Dependency Injection Configuration
Example: Complete SSR Setup
Debugging Tips
Last updated
Was this helpful?