Skip to content

Instantly share code, notes, and snippets.

@dsternlicht
Created July 24, 2018 07:46
Show Gist options
  • Select an option

  • Save dsternlicht/8625f96d4fe102f0fa69b3738e53fd8b to your computer and use it in GitHub Desktop.

Select an option

Save dsternlicht/8625f96d4fe102f0fa69b3738e53fd8b to your computer and use it in GitHub Desktop.
Creating a PayPal IPN Endpoint With NodeJS - routes.js
import IPNController from './controllers/ipn.ctrl';
function routes(app) {
// ...
// PayPal IPN endpoint
app.post('/ipn', IPNController.index);
// ...
}
export default routes;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment