1.2.0 • Published 8 years ago

lokka-transport-http-auth v1.2.0

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

lokka-transport-http-auth

HTTP Auth Transport Layer for Lokka (Works only on the server);


This is an extended version of lokka-transport-http with the basic-auth support.

Basic Usage

Install the package:

npm i --save lokka-transport-http-auth
npm i --save lokka

This is how to send request to Facebook's SWAPI GraphQL Demo.

import HttpTransport from 'lokka-transport-http-auth';
const transport = new HttpTransport('http://user:secret@localhost:8090/path');
transport.send(`
    {
      allFilms {
        films {
          title
        }
      }
    }
`).then(response => {
    console.log(JSON.stringify(response, null, 2));
});