https://github.com/couellet/snipcart-webhooks-nodejs-demo
Basic sample of a Express application that handles Snipcart webhooks
https://github.com/couellet/snipcart-webhooks-nodejs-demo
express nodejs snipcart webhook webhooks-catcher
Last synced: 29 days ago
JSON representation
Basic sample of a Express application that handles Snipcart webhooks
- Host: GitHub
- URL: https://github.com/couellet/snipcart-webhooks-nodejs-demo
- Owner: couellet
- Created: 2017-05-01T18:40:33.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-01T18:40:48.000Z (about 8 years ago)
- Last Synced: 2025-02-10T14:38:38.239Z (3 months ago)
- Topics: express, nodejs, snipcart, webhook, webhooks-catcher
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Snipcart Webhooks Handler - DEMO
This is a dummy demo about how to handle Snipcart webhooks via a simple NodeJS Express app.
Please note that not all the webhooks are handled. As of now only the Webhooks for taxes calculation are.
This is very WIP.
## Getting started
Start by cloning this repo. Then install dependencies via `npm`.
```
npm install
```Then you can start the web server with `nodemon` if you are developing with this command:
```
npm run dev
```Or you can start the webserver directly with node using:
```
npm start
```The web server will start on `http://localhost:8181`.