Skip to content

Instantly share code, notes, and snippets.

@dsternlicht
Last active July 24, 2018 08:20
Show Gist options
  • Select an option

  • Save dsternlicht/84ea778edec34cab30a294a6d05b09b3 to your computer and use it in GitHub Desktop.

Select an option

Save dsternlicht/84ea778edec34cab30a294a6d05b09b3 to your computer and use it in GitHub Desktop.
Creating a PayPal IPN Endpoint With NodeJS - ipn.ctrl.js - Basic Structure
class IPNController {
static index(req, res) {
console.log('It works! 😀');
res.status(200).send('OK');
res.end();
}
}
export default IPNController;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment