Last active
April 29, 2024 19:17
-
-
Save gr2m/5463675 to your computer and use it in GitHub Desktop.
Imagine you could purchase items from your store, with pure JavaScript in the browser. How would it look like? Here's what I came up with. Forks & comments much appreciated! #nobackend #dreamcode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// purchase a product with a credit card | |
purchase('productId') | |
.using( { | |
cc: "4556934156210213", | |
valid: "2016-10", | |
csc: "123" | |
} ) | |
// purchase a product with paypal | |
purchase('productId') | |
.using( 'paypal' ) | |
// upgrade a user to a pro plan, payment via paypal. | |
purchase( | |
account.upgradoTo( 'pro' ) | |
).using('paypal') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
FYI, there's a standard for this now.
Although the API is a bit more complex.