Skip to content

Axorax/buco.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple fetch library for nodejs

⚙️ Installation

npm i buco

📘 Usage

• Import buco

// ES6
import buco from 'buco';

// commonjs
const buco = require('buco');

• GET request

async function test() {
    const data = await buco.get("https://zenquotes.io/api/random");
    console.log(JSON.parse(data));
}

test();
buco.get("https://zenquotes.io/api/random").then(data => {
    console.log(JSON.parse(data));
});

• GET request and convert to json

async function test() {
    const data = await buco.get("https://zenquotes.io/api/random").json();
    console.log(data);
}

test();
async function test() {
    const data = await buco.get("https://zenquotes.io/api/random", {
        json: true
    });
    console.log(data);
}

test();

• POST request

async function test() {
    const data = await buco.post(`https://is.gd/create.php?format=json&url=https://github.com/Axorax/buco.js`).json();
    console.log(data);
}

test()

Support me on Patreon - Check out my socials