├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package.json ├── views └── index.ejs └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keygen-sh/example-paddle-integration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keygen-sh/example-paddle-integration/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keygen-sh/example-paddle-integration/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keygen-sh/example-paddle-integration/HEAD/package.json -------------------------------------------------------------------------------- /views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keygen-sh/example-paddle-integration/HEAD/views/index.ejs -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keygen-sh/example-paddle-integration/HEAD/yarn.lock --------------------------------------------------------------------------------