# node-app-store-connect-typescript-test **Repository Path**: mirrors_dfabulich/node-app-store-connect-typescript-test ## Basic Information - **Project Name**: node-app-store-connect-typescript-test - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-08-21 - **Last Updated**: 2026-05-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README This is a test of the [Node App Store Connect API](https://github.com/dfabulich/node-app-store-connect-api) with a TypeScript client. Edit `issuerId`, `apiKey`, and `privateKey` in `test.ts`, and then `npm test` to run the test. The test uses [`ts-node`](https://github.com/TypeStrong/ts-node) to launch `test.ts` directly. In order to use ESM mode, (enabling top-level await) the repository includes a very basic `tsconfig.json` configured to target `ES2022`. ```json { "compilerOptions": {"module": "ES2022", "target": "ES2022", "moduleResolution": "Node"} } ``` And `package.json` includes `type: "module"` to enable ESM mode, and we pass the `--esm` parameter to `ts-node` to force it to generate ESM.