stripe-meteor
stripe-meteor copied to clipboard
A Meteor package containing Stripe.js, Node-Stripe, and Stripe Checkout.
I don't know why I'm getting these errors. The payment works though (I'm in test mode). I'm only asking because this is payment related, else I would not bothered as...
Just creating an issue so maybe it may help people not wasting time like I did. This package is not compatible with [react-stripe-elements](https://github.com/stripe/react-stripe-elements) despite correct configuration, the `stripe.js` served is...
Hi, I'm getting this error in the server console on startup. `ReferenceError: Stripe is not defined` `at both/startup.js:2:3` Code snippet `Meteor.startup(function() { Stripe.setPublishableKey('pk_test_etc'); // stripe test account });` Any ideas...
Currently when stripe is installed as a package it is loaded on all pages for the site. Is there a way to manually set which pages stripe is loaded on?...
stripe.js and checkout.js are loaded in all pages since they are imported in the header. Instead, you could use : - the $.getScript() jQuery function in a Template.mytemplate.rendered block -...
Hi there, I have tried your example of charging but getting no results on the client: `Meteor.call('chargeCard', stripeToken);` I'm only getting `undefined` returns no matter what I do: returning directly...
I am experiencing nearly a second load times waiting for the checkout.js.map to load from Stripe. This is fine on the page where I do my purchase, but I would...
I've tried to do the usual pattern for meteor.wrapAsync with charges.createRefund and its giving me issues. ``` javascript var createRefund = Meteor.wrapAsync(StripeAPI.charges.createRefund.bind(StripeAPI.charges); var result = createRefund(chargeId); ``` Spits out a...
When I try to subscribe user with payments, it says Stripe is not an object. I'm guessing it's because it's before Meteor.startup is ready - how do I do this...
In the Package.onUse function, I specified both `api.use('mrgalaxy:stripe');` `api.imply('mrgalaxy:stripe');` And both have the following error printed to the terminal: ``` TypeError: Object # has no method 'require' at Package (packages/mrgalaxy:stripe/stripe_server.js:3)...