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
- Host: GitHub
- URL: https://github.com/enfp-dev-studio/node-mac-request-review
- Owner: enfp-dev-studio
- License: mit
- Created: 2022-12-10T10:09:04.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-13T06:02:04.000Z (over 3 years ago)
- Last Synced: 2025-06-01T16:56:43.887Z (about 1 year ago)
- Topics: appstore-api, darwin, electron, macappstore, macos, mas, node-gyp, nodejs, osx, storekit-wrapper, typescript
- Language: Python
- Homepage:
- Size: 194 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# node-mac-request-review

---
### 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).
### How To Install
```bash
$ yarn add node-mac-request-review
```
### How to Use
```typescript
import { requestReview } from "node-mac-request-review";
// Ask Review
requestReview();
```
---