You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Microsoft Graph JavaScript SDK is a lightweight wrapper around the Microsoft Graph API that supports both Node and the browser. See the [samples](samples) folder for code examples. You can also use our [TypeScript graph types](https://github.com/microsoftgraph/msgraph-typescript-typings) with this SDK.
5
+
The Microsoft Graph JavaScript client library is a lightweight wrapper around the Microsoft Graph API that supports both Node and the browser. See the [samples](samples) folder for code examples. You can also use our [TypeScript graph types](https://github.com/microsoftgraph/msgraph-typescript-typings) with this library.
6
6
7
-
> This SDK is currently in preview and we would love to hear your feedback! You can file an issue in this repository or write on our [uservoice page](https://officespdev.uservoice.com/). We're also trying to add more intellisense support beyond the current typings so we're also especially interested in feedback on the [Microsoft Graph TypeScript Typings](https://github.com/microsoftgraph/msgraph-typescript-typings).
7
+
> This client library is currently in preview and we would love to hear your feedback! You can file an issue in this repository or write on our [uservoice page](https://officespdev.uservoice.com/). We're also trying to add more intellisense support beyond the current typings so we're also especially interested in feedback on the [Microsoft Graph TypeScript Typings](https://github.com/microsoftgraph/msgraph-typescript-typings).
8
8
9
9
## Installation
10
10
### Node
@@ -22,7 +22,7 @@ Include [lib/graph-js-sdk-web.js](https://github.com/microsoftgraph/msgraph-sdk-
22
22
```
23
23
## Changelog
24
24
#### 0.3.0
25
-
* Migrated away from typings in sdk core and TypeScript sample
25
+
* Migrated away from typings in client library core and TypeScript sample
26
26
27
27
#### 0.2.2
28
28
* Updated SuperAgent to version ``` 3.3.0 ```
@@ -34,8 +34,8 @@ Include [lib/graph-js-sdk-web.js](https://github.com/microsoftgraph/msgraph-sdk-
34
34
35
35
36
36
## Usage
37
-
### Initialize SDK with access token provider
38
-
This SDK only handles authentication in the most basic way possible. The application is responsible for refreshing tokens and returning an immediately valid access token in the authentication provider.
37
+
### Initialize client with access token provider
38
+
This client library only handles authentication in the most basic way possible. The application is responsible for refreshing tokens and returning an immediately valid access token in the authentication provider.
39
39
```javascript
40
40
41
41
var client =MicrosoftGraph.Client.init({
@@ -310,7 +310,7 @@ client
310
310
```
311
311
312
312
## Development
313
-
These steps are not required to use this SDK.
313
+
These steps are not required to use this library.
314
314
315
315
```npm install``` installs development dependencies (TypeScript, Mocha, etc.).
316
316
> **Note:** If you want to run ```tsc``` from the command line, install TypeScript globally with ```npm install -g typescript``` or reference `./node_modules/.bin/tsc`
We'd love to get your feedback about the Microsoft Graph JavaScript SDK. You can send your questions and suggestions to us in the [Issues](https://github.com/microsoftgraph/msgraph-sdk-javascript/issues) section of this repository.
331
+
We'd love to get your feedback about the Microsoft Graph JavaScript client library. You can send your questions and suggestions to us in the [Issues](https://github.com/microsoftgraph/msgraph-sdk-javascript/issues) section of this repository.
332
332
333
333
334
334
## Contributing
@@ -338,8 +338,8 @@ Please see the [contributing guidelines](CONTRIBUTING.md).
0 commit comments