# fetch **Repository Path**: iamfat/fetch ## Basic Information - **Project Name**: fetch - **Description**: @genee/fetch source - **Primary Language**: TypeScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-02-09 - **Last Updated**: 2022-02-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # @genee/fetch ## Usage ```typescript import fetch from '@genee/fetch'; type UserData = { id: number; name: string; }; (async () => { const user = await fetch('path/to/user', { method: 'POST', body: { name: 'Doe John', }, // timeout: 5000, // default is 5000 // json: true, // default is true, return original text if json is false }); })(); ```