flumm-fetch
Usage Example
async / await
; // GETasync { const query = await ; const result = await query; console;}; // POSTasync { const opts = method: "POST" body: name: "John Doe" password: "pwd" ; const query = await ; const result = await query; console;};
promises
; // GET ; // POSTconst opts = method: "POST" body: name: "John Doe" password: "pwd" ; ;
License
This project is licensed under the MIT license, see LICENSE.