0.1.3 • Published 7 years ago

sbis3-bl-request v0.1.3

Weekly downloads
77
License
-
Repository
-
Last release
7 years ago

WI.SBIS BL Request Helper

Что это?

Модуль-обертка для выполенния запросов к бизнес-логике WI.SBIS

Установка

$ npm install sbis3-bl-request

Использование

var
  bl = require('sbis3-bl-request'),
  options = {
      hostname: 'http://localhost/',
      path: '/admin/service/',
      method: 'POST'
  },
  params = {
      method: 'Конфигурация.Получить',
      data: {
          'Хост': '',
          'Порт': '',
          'Каталог': ''
      }
  },
  ext = {
      'X-NewHeader': '0010100101'
  };
bl.doRequest(options, params, ext).then(function (response) {
  if (response.error) {
      return new Error(response.error.message);
  }
  console.log(response);
});
0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago