Example #1
0
  it('should return the service string configuration', function () {
    var api = superapi({
      baseUrl: 'http://foo.domain.tld/api',
      services: {
        foo: 'bar'
      }
    });

    api.service('foo').should.eql('bar');
  });
Example #2
0
'use strict';

import superagent from 'superagent';
import superapi from 'superapi';

// api configuration
var api = superapi.default({
    baseUrl: 'http://localhost:8081',
    services: {
        speakers: {
            path: '/echo/speakers',
        },
    },
    options: {
        accept: 'json'
    }
});
api.agent = superagent;

export default api;