An open API service indexing awesome lists of open source software.

https://github.com/enfp-dev-studio/node-mac-request-review

A Native module to show App Store review requesting UI. It tells StoreKit to ask the user to rate or review the app
https://github.com/enfp-dev-studio/node-mac-request-review

appstore-api darwin electron macappstore macos mas node-gyp nodejs osx storekit-wrapper typescript

Last synced: 10 months ago
JSON representation

A Native module to show App Store review requesting UI. It tells StoreKit to ask the user to rate or review the app

Awesome Lists containing this project

README

          

# node-mac-request-review

![npm](https://img.shields.io/npm/dm/node-mac-request-review?style=flat-square)

---
### Note
A Native module to show App Store review requesting UI. This library is a simple wrapper of [Storekit's requestReview](https://developer.apple.com/documentation/storekit/skstorereviewcontroller/2851536-requestreview).
It was created for use in Electron apps. It is currently being used in my app, [Capture Note](https://apps.apple.com/app/id1620829533).


image

### How To Install

```bash
$ yarn add node-mac-request-review
```

### How to Use

```typescript
import { requestReview } from "node-mac-request-review";

// Ask Review
requestReview();
```

---