Socket
Socket
Sign inDemoInstall

clang

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clang

Node.js api wrapper for Clang's SOAP api


Version published
Weekly downloads
51
increased by264.29%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status npm version

node-clang

Anyone using Clang's SOAP api? Here's something that will make your life easier. A Node.js api that wraps Clang's SOAP api. You don't need to bother with the extra resource callbacks that some methods like customer_getByObject require. Internally these resources are polled and the final dataset is returned in the callback.

I had a ton of fun building this. Node.js rocks!

##Install

npm install clang

##Example

var Clang = require("./lib/clang");

var clang = new Clang({uuid: '12345678-1234-1234-1234-123456781234'});

clang.request('group_getMembers', {
  groupId: 2
}, function(err, result) {
  console.log(arguments);
});

//Paging using the special parameters _size and _offset. Defaults are 50 and 0
clang.request('customer_getAll', {
  _size: 10
}, function(err, result) {
  console.log(arguments);
});

##WSDL This is the underlying WSDL document that is used

https://secure.myclang.com/app/api/soap/public/index.php?wsdl

Keywords

FAQs

Package last updated on 26 Jun 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc