0.0.13 • Published 8 years ago

sails-stripe v0.0.13

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

sails-generate-sails-stripe

A sails-stripe generator for use with the Sails command-line interface.

Status

Stability: 2 - Stable

Sails-stripe auto generates Models and Controllers for use with the stripe-node api to work with Waterline. It also generates a Stripe Controller with a route for Stripe webhooks /api/stripe/webhook. It auto checks to see if the event is valid or has already been recorded and then checks if the event action is the latest action so that your DB doesn't get overridden with old data. Niffty eh? For more information check out Stripe webhooks.

I'm also proud to say, sails-stripe has handled over 2.5 million Stipe events with grace (about 5 million dollars in transactions that I personally know of), which is why I am labeling it as "stable".

From this point on, I would like to adopt new Stripe requests and refreain from editing the core. However, your PRs are always welcome! (You are what makes this project awesome).

Installation

$ npm install sails-stripe --save

1. configure sailsrc

{
  "generators": {
    "modules": {
      "sails-stripe": "sails-stripe"
    }
  }
}

2. run generator

$ sails generate sails-stripe

3. update configs

config/routes.js

module.exports.routes = {
  ...
  'post /api/stripe/webhook': 'StripeController.webhook',
}

4. configure Stripe.com to point to your webhook

Account-> webhooks-> +Add endpoint-> https://{yourdomain}/api/stripe/webhook

5. You will need to use the Node.js Stripe API.

Currently, sails-stripe defaults to using the Stripe API with stripe, however, feel free to use your own service after install.

Development

To get started quickly and see this generator in action, ...

Also see CONTRIBUTING.md for more information on overriding/enhancing existing generators.

Questions?

See FAQ.md.

Roadmap

v0.1.0

  • Eliminate as many Race scenarios as possible
  • DONE: Add Bank Account as Customer Source
  • DONE: Validate each Stripe Event using the Stipe recommended round trip

Change Log

v0.0.10

  • Add Bank Account as Customer Source.

v0.0.9

  • Add Stable Release.
  • Replaces findOrCreate for the faster lookup of Count.
  • Persists getStripeEvent to background handeling to prevent timeout.

v0.0.8

  • Add Products, Orders, SKUs, Alipay, Bank Accounts, Tokens

v0.0.6

  • Updates coupons redeem_by dates to work as date objects

v0.0.5

  • Update to handle Stripe customer.source CRUD operations;

More Resources

License

MIT © 2015 Scott Wyatt & contributors

As for Sails? It's free and open-source under the MIT License.

image_squidhome@2x.png

0.0.13

8 years ago

0.0.11

8 years ago

0.0.10

8 years ago

0.0.9

9 years ago

0.0.8

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago