buco

1.1.0 • Public • Published

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

Package Sidebar

Install

npm i buco

Weekly Downloads

1

Version

1.1.0

License

MIT

Unpacked Size

4.86 kB

Total Files

4

Last publish

Collaborators

  • axoraxdev