Nimble’s Javascript SDK gives you access to platform native features from within your web app.
nimble.native.loadProducts(productIds).then((products) => {
return displayProducts(products)
})
const purchaseSubscription = (productId) => {
return nimble.native
.purchaseSubscription({
tier: 1,
interval: 1,
productId: productId,
})
.then((transactionId) => {
// Upgrade the user on your side here, and call
// finishTransaction only when successful
return confirmSubscription(userId, transactionId).then(() => {
return nimble.native.finishTransaction(transactionId)
})
})
}
Nimble can take your existing web app or PWA, augment it with native features, and distribute it on the App Store for iOS & iPad.
Whether you’re using a JavaScript framework or no-code platforms such as Bubble, Webflow, Wix, WordPress or Shopify — easily convert your site into a mobile app.