Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enamhasan/shopify-checkout-survey
Shopify checkout UI extension to collect survey data at checkout.
https://github.com/enamhasan/shopify-checkout-survey
Last synced: 10 days ago
JSON representation
Shopify checkout UI extension to collect survey data at checkout.
- Host: GitHub
- URL: https://github.com/enamhasan/shopify-checkout-survey
- Owner: enamhasan
- License: gpl-3.0
- Created: 2024-12-05T00:50:49.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-23T23:32:35.000Z (about 2 months ago)
- Last Synced: 2024-12-24T00:23:57.312Z (about 2 months ago)
- Language: JavaScript
- Size: 182 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Shopify-checkout-survey
Shopify checkout UI extension to collect survey data at checkout.## Screenshot
![Project Screenshot](screenshots/shopify-checkout-survey.png)
=======
# Shopify App Template - Extension only## Getting started
### Requirements
1. You must [download and install Node.js](https://nodejs.org/en/download/) if you don't already have it.
1. You must [create a Shopify partner account](https://partners.shopify.com/signup) if you don’t have one.
1. You must create a store for testing if you don't have one, either a [development store](https://help.shopify.com/en/partners/dashboard/development-stores#create-a-development-store) or a [Shopify Plus sandbox store](https://help.shopify.com/en/partners/dashboard/managing-stores/plus-sandbox-store).### Installing the template
This template can be installed using your preferred package manager:
Using yarn:
```shell
yarn create @shopify/app
```Using npm:
```shell
npm init @shopify/app@latest
```Using pnpm:
```shell
pnpm create @shopify/app@latest
```This will clone the template and install the required dependencies.
#### Local Development
[The Shopify CLI](https://shopify.dev/docs/apps/tools/cli) connects to an app in your Partners dashboard. It provides environment variables and runs commands in parallel.
You can develop locally using your preferred package manager. Run one of the following commands from the root of your app.
Using yarn:
```shell
yarn dev
```Using npm:
```shell
npm run dev
```Using pnpm:
```shell
pnpm run dev
```Open the URL generated in your console. Once you grant permission to the app, you can start development (such as generating extensions).
## Developer resources
- [Introduction to Shopify apps](https://shopify.dev/docs/apps/getting-started)
- [App extensions](https://shopify.dev/docs/apps/build/app-extensions)
- [Extension only apps](https://shopify.dev/docs/apps/build/app-extensions/build-extension-only-app)
- [Shopify CLI](https://shopify.dev/docs/apps/tools/cli)
>>>>>>> c5aa9d3 (init the extension only app)