This is a basic Node.js library that offers evented endpoints to the Stripe API.
export STRIPE_KEY=<<stripe api key here>>
npm install
node example/app
var stripe_api = require('lib/main.js');
var stripe = new stripe_api(process.env.STRIPE_KEY);stripe.RESOURCE.VERB()
stripe.charges.create({...});stripe.on('VERB_RESOURCE', function(data) {....});
stripe.on('create_charge', function(data) {....});