Features Breakdown
const client = nexus.create({
baseURL: 'https://api.example.com',
cacheEnabled: true,
});
client.get('/posts'); // Network call
client.get('/posts'); // Served from cacheconst client = nexus.create({
baseURL: 'https://api.example.com',
retryConfig: { retries: 3, delay: 1000 }, // 3 retries with 1-second delay
});Comparison: Nexus vs Axios
Last updated