npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

sails-stripe

v0.0.13

Published

sails generate sails-stripe models and controllers

Readme

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