Socket
Socket
Sign inDemoInstall

node-ews

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-ews

A simple JSON wrapper for the Exchange Web Services (EWS) SOAP API


Version published
Weekly downloads
2.1K
increased by3.38%
Maintainers
1
Weekly downloads
 
Created
Source

node-ews

A simple JSON wrapper for the Exchange Web Services (EWS) SOAP API
npm install node-ews
About

A combination of node-soap and httpntlm wrapped up with some modifications to make queries to Microsoft's Exchange Web Service API work.

Features:
  • Assumes NTLM Authentication over HTTPs
  • Connects to configured EWS Host and downloads it's wsdl file so it might be concluded that this is "fairly" version agnostic
  • After downloading the wsdl file, the wrapper dynamically exposes all EWS SOAP functions
  • Attempts to standardize Microsoft's wsdl by modifying the file to include missing service name, port, and bindings
Example 1: Get Exchange Distribution List Members Using ExpandDL
https://msdn.microsoft.com/EN-US/library/office/aa564755.aspx
var ews = require('node-ews');

// exchange server connection info
var username = 'myuser@domain.com';
var password = 'mypassword';
var host = 'ews.domain.com';

// exchange ews query on Public Distribution List by email
var ewsFunction = 'ExpandDL';
var ewsArgs = {
  'Mailbox': {
    'EmailAddress':'publiclist@domain.com'
  }
};

// setup authentication
ews.auth(username, password, host);

// query ews, print resulting JSON to console
ews.run(ewsFunction, ewsArgs, function(err, result) {
  if(!err) console.log(JSON.stringify(result));
});
Known Issues / Limits / TODOs:
  • Depends on a modified fork of the soap-ntlm fork of node-soap. A node-soap auth plugin is not possible due to the nature of NTLM. This is located in this repository.
  • Returned json requires a lot of parsing. Probably can be optimized to remove common parent elements to the EWS responses or dynamically filter based on query.
  • Outside of the example below, nothing has been tested (aka "It's production ready!")
  • Temp file cleanup logic needs to be validated to ensure file cleanup after process exit or object destruction

Keywords

FAQs

Package last updated on 15 Feb 2016

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