cjet-axios v0.1.6 is a minimal wrapper around Axios with TypeScript support, designed for CJET (Cron Job Execution Tool) integration. It provides a simplified interface for making HTTP requests within CJET workflows. Package has sparse documentation and no known release cadence. Limited ecosystem adoption compared to Axios itself, but offers stricter typing for CJET environments.
npm install cjet-axiosNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates a basic GET request with an Authorization header using cjet-axios, including error handling.
Refer to Axios documentation for config options, and use type assertions if needed.
Consider using Axios directly for up-to-date support.
Use const cjetAxios = require('cjet-axios').default; or switch to ESM import.Use const cjetAxios = require('cjet-axios').default; or switch to import statement.Use ES import: import cjetAxios from 'cjet-axios';
Use import type { CjetAxiosConfig } from 'cjet-axios';