https://github.com/clarktozer/spfx-webhooks-manager
SharePoint framework webpart for managing webhooks for a site
https://github.com/clarktozer/spfx-webhooks-manager
sharepoint sharepoint-framework sharepoint-online spfx
Last synced: 3 months ago
JSON representation
SharePoint framework webpart for managing webhooks for a site
- Host: GitHub
- URL: https://github.com/clarktozer/spfx-webhooks-manager
- Owner: clarktozer
- License: mit
- Created: 2018-06-26T01:31:44.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-20T03:02:20.000Z (about 7 years ago)
- Last Synced: 2025-04-04T08:51:16.792Z (9 months ago)
- Topics: sharepoint, sharepoint-framework, sharepoint-online, spfx
- Language: TypeScript
- Homepage:
- Size: 4.23 MB
- Stars: 1
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## spfx-webhooks-manager
SharePoint framework webpart for managing webhooks for a site
There is an additional branch (redux) that has the webpart built with redux.

### Building the code
```bash
git clone the repo
npm i
npm i -g gulp
gulp
```
This package produces the following:
* lib/* - intermediate-stage commonjs build artifacts
* dist/* - the bundled script, along with other resources
* deploy/* - all resources which should be uploaded to a CDN.
### Build options
```bash
gulp clean
gulp test
gulp serve
gulp bundle
gulp package-solution
```
### Run from localhost
Deploy the app to the SharePoint app catalog.
Create a webpart page and add the webpart. The files to run the webpart will be served from localhost.
You will also need to change the JSOM external urls in the config.json to be your site collection.
```bash
gulp clean
gulp serve --nobrowser
```