The simplest way to load and configure Stripe JS in your ember-cli application.
npm install --save-dev ember-cli-stripejs
Add your Stripe public key to your app config. Obviously, don't add your secret key.
// config/environment.js
ENV.stripe = {
key: "pk_test_C0sa3IlkLWBlrB8laH2fbqfh"
};
Use Stripe JS has you normally would.
For more information on using ember-cli, visit http://www.ember-cli.com/.