1.1.0 • Published 1 year ago

buco v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

⚙️ 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

1.1.0

1 year ago

1.0.0

1 year ago

0.0.1

1 year ago