1.1.0 • Published 8 months ago

desejo v1.1.0

Weekly downloads
-
License
-
Repository
-
Last release
8 months ago

Desejo

A tiny library to make API calls.

Simple Usage

import desejo from 'desejo';

const api = desejo.create({
  baseUrl: 'https://api.filemon.io/',
  ...
});

api.get('/hello');   // Gets https://api.filemon.io/hello
desejo.get('/hello');   // Gets http://localhost:3000/hello (or wherever you are)

You can also define values straight away:

import api from "desejo";

api.baseUrl = "https://dummy.co/";

const response = await api.get("/dummy?name=xyz");
console.log(response);
1.1.0

8 months ago

1.0.0

8 months ago