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.
Query String: It supports appending a query string parameter to the api request.
Install it
$ npm install rendr-auth-rest-adapter --save
Configure 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)
});
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)$ npm test
We aim for 100% coverage and we hope it keeps that way! :)
Check the report after running npm test.
$ open ./coverage/lcov-report/index.html
We use grunt bump package to control package versioning.
Bump Patch version
$ grunt bump
Bump Minor version
$ grunt bump:minor
Bump Major version
$ grunt bump:major
Shout out to @pjanuario.