A light-weight networking library for the browser.
Install Net like this:
npm install net.js --save
After including build/net.min.js in your project you can use it like this:
var myAPI = new Net('https://api.dhariri.com/');
myAPI
.get('articles/')
.then((response) => {
// Got 'em!
response.json.articles.forEach((article) => {
console.log(article);
});
}).catch((error) => {
// Something bad happened...
console.log(error);
});
Net supports the following HTTP methods: GET
, PUT
, POST
, PATCH
, and DELETE
. You can call them by their lowercase Net method counterparts. Example: Net.post()
or Net.delete()
If you find yourself attaching similar headers to every request (like authorization headers, for example) you can use the constructor to set up some default headers:
const myAPI = new Net(
'https://api.dhariri.com/', // Specify a root to prepend to all requests
{
'Authorization' : `Basic ${window.atob('giraffes')}`,
'Content-Type' : 'application/json'
}
);
myAPI
.get('articles/')
.then((response) => {
response.json.articles.forEach((article) => {
console.log(article.title);
});
});
You can set these at any time (for example, when a user logs in) by calling Net.setHeaders(headers)
:
myAPI
.setHeaders({
'Authorization' : `Basic ${window.atob('giraffes')}`
});
myAPI
.get('secrets/')
.then((response) => {
// Got them secrets
});