0.1.0-preview.1 • Published 5 years ago

microsoft-graph-toolkit v0.1.0-preview.1

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

Microsoft Graph Toolkit (Preview)

NPM Licence code style: prettier stackoverflow Build Status

The Graph Toolkit is a collection of UI components and helpers for the Microsoft Graph.

Components are built as web components and work with any web framework

This library is in Preview

This project is in preview and can change at any time. This includes changes in apis, design, and architecture. Based on feedback, the project is expected to evolve and stabilize over time.

Documentation

View the documentation

Getting Started

You can install the components by referencing them through our CDN or installing them through NPM

Use via CDN:

<script src="https://mgtlib.z5.web.core.windows.net/mgt/latest/mgt-loader.js"></script>

You can then start using the components in your html page. Here is a full working example with the Msal provider:

<script src="https://mgtlib.z5.web.core.windows.net/mgt/latest/mgt-loader.js"></script>
<mgt-msal-provider client-id="[CLIENT-ID]" ></mgt-msal-provider>
<mgt-login></mgt-login>

<!-- <script>
    // alternatively, you can set the provider in code and provide more options
    mgt.Providers.globalProvider = new mgt.MsalProvider({clientId: '[CLIENT-ID]'});
</script> -->

NOTE: MSAL requires the page to be hosted in a web server for the authentication redirects. If you are just getting started and want to play around, the quickest way is to use something like live server in vscode.

Use via NPM:

The benefits of using MGT through NPM is that you have full control of the bundling process and you can bundle only the code you need for your site. First, add the npm package:

npm install microsoft-graph-toolkit

Now you can reference all components at the page you are using:

<script src="node_modules/microsoft-graph-toolkit/dist/es6/components.js"></script>

Or, just reference the component you need and avoid loading everything else:

<script src="node_modules/microsoft-graph-toolkit/dist/es6/components/mgt-login/mgt-login.js"></script>

Similarly, to add a provider, you can add it as a component:

<script src="node_modules/microsoft-graph-toolkit/dist/es6/components/providers/mgt-msal-provider.js"></script>

<mgt-msal-provider client-id="[CLIENT-ID]"></mgt-msal-provider>

or, add it in your code:

<script type="module">
    import {Providers, MsalProvider} from 'microsoft-graph-toolkit';

    Providers.globalProvider = new MsalProvider({clientId: '[CLIENT-ID]'});
</script>

Providers

The components work best when used with a provider. The provider exposes authentication and Microsoft Graph apis used by the components to call into the Microsoft Graph.

The toolkit contains providers for MSAL, SharePoint, Teams, and Office Add-ins (coming soon). You can also create your own providers by extending the IProvider abstract class.

Contribute

We enthusiastically welcome contributions and feedback. Please read the contributing guide before you begin.

Feedback and Requests

For general questions and support, please use Stack Overflow where questions should be tagged with microsoft-graph-toolkit

Please use GitHub Issues for bug reports and feature requests. We highly recommend you browse existing issues before opening new issues.

License

Copyright (c) Microsoft and Contributors. All right reserved. Licensed under the MIT License

Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.