
Security News
November CVEs Fell 25% YoY, Driven by Slowdowns at Major CNAs
November CVE publications fell 25% YoY even as 2025 totals rose, showing how a few major CNAs can swing “global” counts and skew perceived risk.
gap-miniapp-sdk
Advanced tools
To install the gap-miniapp-sdk package, run the following command:
npm install gap-miniapp-sdk
Import and initialize the SDK in your JavaScript or TypeScript application, preferring a Singleton object to communicate with the super app:
import { GapMiniAppSdk } from 'gap-miniapp-sdk';
const gapMiniAppSdk = new GapMiniAppSdk();
Detect the platform on which the super app is running for the mini app to function correctly:
let userAgent = gapMiniAppSdk.detectPlatform();
gapMiniAppSdk.setPlatformExecutor(userAgent);
Get the super app's current authentication information:
const response = await gapMiniAppSdk.getInstance().getAccessToken();
Set/Get storage item in the super app (This storage is constant and separate for each app and can be publicable):
Set a storage item:
let data = {
key: "test_key_1",
value: { data: false },
isPublic: 0
};
gapMiniAppSdk.setStorageItem(data).then((res) => console.log(res));
Get a storage item:
let data = {
key: "test_key_1"
};
await gapMiniAppSdk.getStorageItem(data)
.then((res) => {
console.log(res);
})
.catch((e) => {
console.log(e);
});
For a complete list of available functions, refer to the following interface file that defines each request/response type:
/gap-miniapp-sdk/dist/interface/gap_miniapp_interface
FAQs
To install the `gap-miniapp-sdk` package, run the following command:
The npm package gap-miniapp-sdk receives a total of 32 weekly downloads. As such, gap-miniapp-sdk popularity was classified as not popular.
We found that gap-miniapp-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
November CVE publications fell 25% YoY even as 2025 totals rose, showing how a few major CNAs can swing “global” counts and skew perceived risk.

Security News
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.