UNPKG
@redwoodjs-stripe/api
Version:
latest (1.0.11)
1.0.11
1.0.10
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.1.0-rc.19
0.1.0-rc.15
0.1.0-rc.14
0.1.0-rc.10
0.1.0-rc.9.monorepo-test.6
0.1.0-rc.9.monorepo-test.5
0.1.0-rc.9.monorepo-test.4
0.1.0-rc.9.monorepo-test.3
0.1.0-rc.9
API-side code for RedwoodJS-Stripe projects
@redwoodjs-stripe/api
/
dist
/
esm
/
lib
/
stripe.js
11 lines
(10 loc)
•
216 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
Stripe
from
"stripe"
;
const
stripe =
new
Stripe
(process.
env
.
STRIPE_SECRET_KEY
, {
appInfo
: {
name
:
"redwoodjs-stripe"
,
url
:
"https://github.com/chrisvdm/redwoodjs-stripe"
} });
export
{ stripe };