# finch-get **Repository Path**: benjaminhsu/finch-get ## Basic Information - **Project Name**: finch-get - **Description**: No description available - **Primary Language**: TypeScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-13 - **Last Updated**: 2021-12-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # finch-get ### install `npm install finch-get` ### usage ```typescript import {getFileCB, getMD5CB, getJsonCB} from "finch-get"; getFileCB("url...", 'N:/targetFilePath', (e) => { if (e) { console.log(e); console.log("Get File Failed"); } else { console.log("Get File DONE"); } }) getJsonCB("url...",(e,result)=>{ if(e) console.log(e); else console.log(result); }) getMD5CB("FilePath...",(e,result)=>{ if(e) console.log(e); else console.log(result); }) ```