https://github.com/acaprojects/skype-native
Node bindings for Skype for Business
https://github.com/acaprojects/skype-native
lync lync-client node-module npm-package skype-for-business typescript typescript-library
Last synced: about 1 year ago
JSON representation
Node bindings for Skype for Business
- Host: GitHub
- URL: https://github.com/acaprojects/skype-native
- Owner: acaprojects
- Created: 2017-05-15T15:16:06.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-11T03:29:22.000Z (over 8 years ago)
- Last Synced: 2025-03-29T13:51:13.542Z (about 1 year ago)
- Topics: lync, lync-client, node-module, npm-package, skype-for-business, typescript, typescript-library
- Language: C#
- Homepage:
- Size: 1.03 MB
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Skype-Native
[](https://travis-ci.org/acaprojects/skype-native)
[](https://codeclimate.com/github/acaprojects/skype-native)
[](https://david-dm.org/acaprojects/skype-native)
[](https://badge.fury.io/js/skype-native)
Node bindings for control and interaction with the Skype for Business / Lync desktop client.
>Note: initial structuring of the project is still taking place. Prior to v1.0.0 expect any exposed API's to break. A lot.
## Requirements
- a locally installed Skype for Business or Lync client
- Windows
This library uses the Windows native Lync 2013 App SDK to provide control and integration with the desktop client. The is compatabile with the Lync 2013, Skype for Business 2015 and Skype for Business 2016 clients.
If a valid environment is not detected, a mocked client will be presented. This may be used for development under Linux and MacOS.
The mocked client may also be forced by setting `MOCK_SKYPE_CLIENT` environment variable.
## Usage
Import the `skype` object from the published package.
Javascript:
```javascript
const { skype } = require('skype-native');
```
Typescript / ES6:
```typescript
import { skype } from 'skype-native';
```
*Types are bundled with the published package and will be automatically imported.*