Skip to content

Commit

Permalink
Added project documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
estruyf committed Mar 30, 2018
1 parent 71449d5 commit e0e12a5
Show file tree
Hide file tree
Showing 5 changed files with 71 additions and 27 deletions.
96 changes: 70 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,70 @@
## rest-tester

This is where you include your WebPart documentation.

### 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

gulp clean - TODO
gulp test - TODO
gulp serve - TODO
gulp bundle - TODO
gulp package-solution - TODO
# SharePoint Framework - Rest API Tester

A web part that can be used for testing out SharePoint APIs without the hassle of using another application and configuring the right headers.

![Rest API Tester](./assets/api-tester-demo.gif)

## Features

The web part has the following built-in features:

- Stores the last used query in local browser storage.
- Ability to store your favorite queries (currently stored in local storage as well).
- Ability to use tokens in the API URL. These are coming from the `this.context.pageContext` object from SPFx.
- API URL Suggestions
- Allows you to set custom headers and body. The body disabled for GET and HEAD requests.
- For every request you get the JSON response.
- Automated conversion of the JSON response to a TypeScript interface.
- SPFx code snippet for the performed query.

## Ready to use this web part?

To make it easier, I have created an automated release process to this repository so that you do not have to clone the repository / bundle / package the solution. The latest version will always be available here: [all releases](https://github.com/estruyf/spfx-rest-api-tester/releases).

> **Info**: automated release process is achieved with VSTS and an Azure Function.
To install it to your tenant, you have to follow the next steps:
- Download the `estruyf-rest-api-tester.sppkg` package from a release
- Upload the solution package to your tenant/site-collection app catalog
- Trust the solution to be available in your environment

![Trust the solution](./assets/trust-solution.png)

- Create a page, and add the web part on it

![Add web part to the page](./assets/add-to-page.png)

## Changelog

For the latest changes, please check out the [changelog](./CHANGELOG.md).

> **Info**: changelog is driven by the [changelog.json](./changelog.json) file. This file will also be used during the automated release process to insert the right information for the release.
## Want to contribute?

Contributions are more than welcome! Please target your PRs to the `DEV` branch.

A great way to contribute is to enrich the known APIs file. This file is used for the API URL suggestions. The structure of this file looks like this:

```JSON
{
"api": [
{ "method": "<METHOD-TYPE>", "url": "_api/..." }
]
}
```

The file is located here: [./src/webparts/restTester/components/known-apis.json](./src/webparts/restTester/components/known-apis.json).

## Minimal path to awesome / running your own development version

So you want to run your own version of the web part. Great! Here is what you have to do:

- Clone this repository
- Install the project dependencies: `npm i`
- Start running the local version: `gulp serve`
- Start testing out the web part

## Ideas / feedback / issues

Got ideas, feedback, or discovered a bug / issue? Please add these via an issue to the issue list of this repository: [issue list](https://github.com/estruyf/spfx-rest-api-tester/issues).
Binary file added assets/add-to-page.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/api-tester-demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/trust-solution.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e0e12a5

Please sign in to comment.