rendr-auth-rest-adapter
v1.0.1
Published
Custom version of the traditional RestAdapter that inherits all its functionality and also adds support for adding extra parameters for API authentication.
Maintainers
Readme
rendr-auth-rest-adapter
Since the default rendr data adapter doesn't have support for api authentication, this custom version inherits all the functionality of the traditional Rendr Rest Adapter and also adds support for adding extra information for API authentication.
Supported authentication methods
Query String: It supports appending a query string parameter to the api request.
How to use it
Install it
$ npm install rendr-auth-rest-adapter --saveConfigure as a data adapter on rendr server. It expects an auth key on the the adapter configuration, such as:
// it uses the same data adapter configurations as Rest Adapter plus auth key
var dataAdapterConfig = {
default: {
host: 'github.com',
protocol: 'http',
auth: {
query: { clientId: "something" }
}
}
};
/**
* Initialize our Rendr server.
*/
var server = rendr.createServer({
dataAdapter: new ProxyAdapter(dataAdapterConfig)
});Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
Running Specs
$ npm testCoverage Report
We aim for 100% coverage and we hope it keeps that way! :)
Check the report after running npm test.
$ open ./coverage/lcov-report/index.htmlBump versioning
We use grunt bump package to control package versioning.
Bump Patch version
$ grunt bumpBump Minor version
$ grunt bump:minorBump Major version
$ grunt bump:majorCredits
Shout out to @pjanuario.
