Home
Softono
l

lecoupa

Professional software vendor delivering innovative solutions on the Softono platform. Specialized in both open-source and proprietary software development.

Total Products
6

Software by lecoupa

vuedarkmode
Open Source

vuedarkmode

<p align="center" style="background: #1b2431; padding: 20px 0;"> <a href="https://www.growthbunker.dev/vuedarkmode" target="_blank"> <img width="100%" src="https://raw.githubusercontent.com/growthbunker/vuedarkmode/master/src/images/vuedarkmode.jpg"> </a> </p> [![npm](https://img.shields.io/npm/v/@growthbunker/vuedarkmode.svg)](https://www.npmjs.com/package/@growthbunker/vuedarkmode) [![npm](https://img.shields.io/npm/dm/@growthbunker/vuedarkmode.svg)](https://npm-stat.com/charts.html?package=@growthbunker/vuedarkmode) [![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/growthbunker/vuedarkmode.svg)](http://isitmaintained.com/project/growthbunker/vuedarkmode "Average time to resolve an issue") [![Percentage of issues still open](http://isitmaintained.com/badge/open/growthbunker/vuedarkmode.svg)](http://isitmaintained.com/project/growthbunker/vuedarkmode "Percentage of issues still open") [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/growthbunker/vuedarkmode/blob/master/LICENSE) [![Netlify Status](https://api.netlify.com/api/v1/badges/ae3d4112-1c84-4868-b4eb-271c3136ede6/deploy-status)](https://app.netlify.com/sites/growthbunker/deploys) ## Documentation You can browse the documentation for Vue Dark Mode [on the website](https://www.growthbunker.dev/vuedarkmode). ## Installation ``` npm install @growthbunker/vuedarkmode # Or if you prefer using yarn yarn add @growthbunker/vuedarkmode ``` ### Vue.js In your `main.js` file: ```js import Vue from "vue" import VueDarkMode from "@growthbunker/vuedarkmode" Vue.use(VueDarkMode) ``` ### Nuxt.js Create a new plugin in `plugins/vuedarkmode.js`: ```js import Vue from "vue" import VueDarkMode from "@growthbunker/vuedarkmode" Vue.use(VueDarkMode) ``` Add this new plugin to `nuxt.config.js`. ```js module.exports = { // ... plugins: [{ src: "@/plugins/vuedarkmode.js" }]; } ``` ### CDN Get the latest version from [jsdelivr](https://www.jsdelivr.com/), and import the JavaScript file in your page. ```html <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/@growthbunker/vuedarkmode@latest/dist/vuedarkmode.min.js"></script> ``` We recommend our users to lock Vue Dark Mode's version when using CDN. Requesting the latest version (as opposed to "latest major" or "latest minor") is dangerous because major versions usually come with breaking changes. Only do this if you really know what you are doing. [Please refer to jsdelivr.com](https://www.jsdelivr.com/features) for more information. ## Available Components We are releasing new components on a monthly basis. [Subscribe to our newsletter](http://eepurl.com/dLlKBM) to stay in touch with coming releases. ### Base Components - **BaseAlert**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseAlert) |ย [source code](/src/components/base/BaseAlert.vue). - **BaseAvatar**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseAvatar) |ย [source code](/src/components/base/BaseAvatar.vue). - **BaseBadge**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseBadge) |ย [source code](/src/components/base/BaseBadge.vue). - **BaseButton**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseButton) |ย [source code](/src/components/base/BaseButton.vue). - **BaseDivider**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseDivider) |ย [source code](/src/components/base/BaseDivider.vue). - **BaseHeading**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseHeading) |ย [source code](/src/components/base/BaseHeading.vue). - **BaseIcon**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseIcon) |ย [source code](/src/components/base/BaseIcon.vue). * **BaseProgressBar**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseProgressBar) |ย [source code](/src/components/base/BaseProgressBar.vue). * **BaseSpinner**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseSpinner) |ย [source code](/src/components/base/BaseSpinner.vue). * **BaseToast**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseToast) |ย [source code](/src/components/base/BaseToast.vue). ### Field Components - **FieldCheckbox**: [documentation](https://www.growthbunker.dev/vuedarkmode/#fieldCheckbox) |ย [source code](/src/components/fields/FieldCheckbox.vue). - **FieldImageUploader**: [documentation](https://www.growthbunker.dev/vuedarkmode/#FieldImageUploader) |ย [source code](/src/components/fields/FieldImageUploader.vue). - **FieldInput**: [documentation](https://www.growthbunker.dev/vuedarkmode/#fieldInput) |ย [source code](/src/components/fields/FieldInput.vue). - **FieldInputNumber**: [documentation](https://www.growthbunker.dev/vuedarkmode/#fieldInputNumber) |ย [source code](/src/components/fields/FieldInputNumber.vue). - **FieldRadio**: [documentation](https://www.growthbunker.dev/vuedarkmode/#fieldRadio) |ย [source code](/src/components/fields/FieldRadio.vue). - **FieldSelect**: [documentation](https://www.growthbunker.dev/vuedarkmode/#fieldSelect) |ย [source code](/src/components/fields/FieldSelect.vue). - **FieldTabs**: [documentation](https://www.growthbunker.dev/vuedarkmode/#fieldTabs) |ย [source code](/src/components/fields/FieldTabs.vue). - **FieldTextarea**: [documentation](https://www.growthbunker.dev/vuedarkmode/#fieldTextarea) |ย [source code](/src/components/fields/FieldTextarea.vue). - **FieldToggle**: [documentation](https://www.growthbunker.dev/vuedarkmode/#fieldToggle) |ย [source code](/src/components/fields/FieldToggle.vue). ## Contributing You are more than welcome to contribute to Vue Dark Mode. Just submit changes via pull request and I will review them before merging. 1. Fork it! ๐Ÿค™ 2. Create your feature branch: `git checkout -b my-new-feature` 3. Commit your changes: `git commit -am "Add some feature"` 4. Push to the branch: `git push origin my-new-feature` 5. Submit a pull request ๐Ÿ‘ The documentation is available in the `docs` folder. The Vue Dark Mode components are available in the `lib` folder. ## License Vue Dark Mode is [MIT licensed](LICENSE). ## Cross-Browsing Vue Dark Mode is using [BrowserStack](https://www.browserstack.com/) to make sure our components render properly on modern browsers. <img alt="BrowserStack Logo" width="200px" src="https://raw.githubusercontent.com/growthbunker/vuedarkmode/master/src/images/browserstack.png">

CSS Frameworks & UI Kits JavaScript Libraries & Components
1.1K Github Stars
vuetimeline
Open Source

vuetimeline

<p align="center" style="background: #1b2431; padding: 20px 0;"> <a href="https://www.growthbunker.dev/vuetimeline" target="_blank"> <img width="100%" src="https://raw.githubusercontent.com/growthbunker/vuetimeline/master/src/images/vuetimeline.jpg"> </a> </p> [![npm](https://img.shields.io/npm/v/@growthbunker/vuetimeline.svg)](https://www.npmjs.com/package/@growthbunker/vuetimeline) [![npm](https://img.shields.io/npm/dm/@growthbunker/vuetimeline.svg)](https://npm-stat.com/charts.html?package=@growthbunker/vuetimeline) [![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/growthbunker/vuetimeline.svg)](http://isitmaintained.com/project/growthbunker/vuetimeline "Average time to resolve an issue") [![Percentage of issues still open](http://isitmaintained.com/badge/open/growthbunker/vuetimeline.svg)](http://isitmaintained.com/project/growthbunker/vuetimeline "Percentage of issues still open") [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/growthbunker/vuetimeline/blob/master/LICENSE) [![Netlify Status](https://api.netlify.com/api/v1/badges/ae3d4112-1c84-4868-b4eb-271c3136ede6/deploy-status)](https://app.netlify.com/sites/growthbunker/deploys) ## Documentation You can browse the documentation for Vue Timeline [on the website](https://www.growthbunker.dev/vuetimeline). ## Installation ``` npm install @growthbunker/vuetimeline # Or if you prefer using yarn yarn add @growthbunker/vuetimeline ``` ### Vue.js In your `main.js` file: ```js import Vue from "vue" import vuetimeline from "@growthbunker/vuetimeline" Vue.use(vuetimeline) ``` ### Nuxt.js Create a new plugin in `plugins/vuetimeline.js`: ```js import Vue from "vue" import vuetimeline from "@growthbunker/vuetimeline" Vue.use(vuetimeline) ``` Add this new plugin to `nuxt.config.js`. ```js module.exports = { // ... plugins: [{ src: "@/plugins/vuetimeline.js" }]; } ``` ### CDN Get the latest version from [jsdelivr](https://www.jsdelivr.com/), and import the JavaScript file in your page. ```html <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/@growthbunker/vuetimeline@latest/dist/vuetimeline.min.js"></script> ``` We recommend our users to lock Vue Timeline's version when using CDN. Requesting the latest version (as opposed to "latest major" or "latest minor") is dangerous because major versions usually come with breaking changes. Only do this if you really know what you are doing. [Please refer to jsdelivr.com](https://www.jsdelivr.com/features) for more information. ## Example Once the plugin is installed, you can use the component like this: ```html <template> <!-- Latest update --> <vue-timeline-update :date="new Date('2017-02-26')" title="v2.2.0 - Initial D" description="Today I am thrilled to announce the release of Vue.js 2.2.0." thumbnail="/images/vuetimeline/initial_d.jpg" category="announcement" icon="code" color="red" /> <!-- Another update --> <vue-timeline-update :date="new Date('2016-11-22')" title="v2.1.0 - Hunter X Hunter" description="Today I am thrilled to announce the release of Vue.js 2.1.0." thumbnail="/images/vuetimeline/hunter_x_hunter.jpg" category="announcement" icon="code" color="turquoise" /> <!-- Yet another update --> <vue-timeline-update :date="new Date('2016-09-30')" title="v2.0.0 - Ghost in the Shell" description="Today I am thrilled to announce the release of Vue.js 2.0.0" thumbnail="/images/vuetimeline/ghost_in_the_shell.jpg" category="announcement" icon="code" color="white" is-last /> </template> ``` ## Contributing You are more than welcome to contribute to Vue Timeline. Just submit changes via pull request and I will review them before merging. 1. Fork it! ๐Ÿค™ 2. Create your feature branch: `git checkout -b my-new-feature` 3. Commit your changes: `git commit -am "Add some feature"` 4. Push to the branch: `git push origin my-new-feature` 5. Submit a pull request ๐Ÿ‘ The documentation is available in the `docs` folder. The Vue Timeline components are available in the `lib` folder. ## License Vue Timeline is [MIT licensed](LICENSE).

Web Components & Widgets
350 Github Stars
vueflags
Open Source

vueflags

<p align="center" style="background: #1b2431; padding: 20px 0;"> <a href="https://www.growthbunker.dev/vueflags" target="_blank"> <img width="100%" src="https://raw.githubusercontent.com/growthbunker/vueflags/master/vueflags_dark.jpg"> </a> </p> [![npm](https://img.shields.io/npm/v/@growthbunker/vueflags.svg)](https://www.npmjs.com/package/@growthbunker/vueflags) [![npm](https://img.shields.io/npm/dm/@growthbunker/vueflags.svg)](https://npm-stat.com/charts.html?package=@growthbunker/vueflags) [![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/growthbunker/vueflags.svg)](http://isitmaintained.com/project/growthbunker/vueflags "Average time to resolve an issue") [![Percentage of issues still open](http://isitmaintained.com/badge/open/growthbunker/vueflags.svg)](http://isitmaintained.com/project/growthbunker/vueflags "Percentage of issues still open") [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/growthbunker/vueflags/blob/master/LICENSE) [![Netlify Status](https://api.netlify.com/api/v1/badges/ae3d4112-1c84-4868-b4eb-271c3136ede6/deploy-status)](https://app.netlify.com/sites/growthbunker/deploys) ## Documentation You can browse the documentation for Vue Flags [on the website](https://www.growthbunker.dev/vueflags). ## Installation ```bash npm install @growthbunker/vueflags # Or if you prefer using yarn yarn add @growthbunker/vueflags ``` ### Vue.js In your `main.js` file: ```js import Vue from "vue" import VueFlags from "@growthbunker/vueflags" Vue.use(VueFlags) ``` ### Nuxt.js Create a new plugin in `plugins/vueflags.js`: ```js import Vue from "vue" import VueFlags from "@growthbunker/vueflags" Vue.use(VueFlags) ``` Add this new plugin to `nuxt.config.js`. ```js module.exports = { // ... plugins: [{ src: "@/plugins/vueflags.js" }]; } ``` ### CDN Get the latest version from [jsdelivr](https://www.jsdelivr.com/), and import the JavaScript file in your page. ```html <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/@growthbunker/vueflags@latest/dist/vueflags.min.js"></script> ``` We recommend our users to lock Vue Flags's version when using CDN. Requesting the latest version (as opposed to "latest major" or "latest minor") is dangerous because major versions usually come with breaking changes. Only do this if you really know what you are doing. [Please refer to jsdelivr.com](https://www.jsdelivr.com/features) for more information. ## Icons <a href="https://github.com/growthbunker/vueflags/tree/master/flags" target="_blank">All the flags are available here</a>. Copy them somewhere in your somewhere in your "public" or "static" folder. You will also have to set the icon path for the component to be able to find them (see package options and component props). A huge thank you to <a href="https://www.flaticon.com/packs/countrys-flags" target="_blank">the author for designing these flags</a>. ## Example Once the plugin is installed, you can use the component like this: ```html <template> <vue-flag code="fr" size="small" /> </template> ``` ## Contributing You are more than welcome to contribute to Vue Flags. Just submit changes via pull request and I will review them before merging. 1. Fork it! ๐Ÿค™ 2. Create your feature branch: `git checkout -b my-new-feature` 3. Commit your changes: `git commit -am "Add some feature"` 4. Push to the branch: `git push origin my-new-feature` 5. Submit a pull request ๐Ÿ‘ The documentation is available in the `docs` folder. The Vue Flags components are available in the `lib` folder. ## License Vue Flags is [MIT licensed](LICENSE).

JavaScript Libraries & Components Web Components & Widgets
119 Github Stars
vuesocial
Open Source

vuesocial

<p align="center" style="background: #1b2431; padding: 20px 0;"> <a href="https://www.growthbunker.dev/vuesocial" target="_blank"> <img width="100%" src="https://raw.githubusercontent.com/growthbunker/vuesocial/master/vuesocial_dark.jpg"> </a> </p> [![npm](https://img.shields.io/npm/v/@growthbunker/vuesocial.svg)](https://www.npmjs.com/package/@growthbunker/vuesocial) [![npm](https://img.shields.io/npm/dm/@growthbunker/vuesocial.svg)](https://npm-stat.com/charts.html?package=@growthbunker/vuesocial) [![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/growthbunker/vuesocial.svg)](http://isitmaintained.com/project/growthbunker/vuesocial "Average time to resolve an issue") [![Percentage of issues still open](http://isitmaintained.com/badge/open/growthbunker/vuesocial.svg)](http://isitmaintained.com/project/growthbunker/vuesocial "Percentage of issues still open") [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/growthbunker/vuesocial/blob/master/LICENSE) [![Netlify Status](https://api.netlify.com/api/v1/badges/ae3d4112-1c84-4868-b4eb-271c3136ede6/deploy-status)](https://app.netlify.com/sites/growthbunker/deploys) ## Documentation You can browse the documentation for Vue Social [on the website](https://www.growthbunker.dev/vuesocial). ## Installation ``` npm install @growthbunker/vuesocial # Or if you prefer using yarn yarn add @growthbunker/vuesocial ``` ### Vue.js In your `main.js` file: ```js import Vue from "vue" import vuesocial from "@growthbunker/vuesocial" Vue.use(vuesocial) ``` ### Nuxt.js Create a new plugin in `plugins/vuesocial.js`: ```js import Vue from "vue" import vuesocial from "@growthbunker/vuesocial" Vue.use(vuesocial) ``` Add this new plugin to `nuxt.config.js`. ```js module.exports = { // ... plugins: [{ src: "@/plugins/vuesocial.js" }]; } ``` ### CDN Get the latest version from [jsdelivr](https://www.jsdelivr.com/), and import the JavaScript file in your page. ```html <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/@growthbunker/vuesocial@latest/dist/vuesocial.min.js"></script> ``` We recommend our users to lock Vue Social's version when using CDN. Requesting the latest version (as opposed to "latest major" or "latest minor") is dangerous because major versions usually come with breaking changes. Only do this if you really know what you are doing. [Please refer to jsdelivr.com](https://www.jsdelivr.com/features) for more information. ## Icons <a href="https://github.com/growthbunker/vuesocial/tree/master/assets/networks" target="_blank">All the icons are available here</a> in three themes (color, black and white). Copy them somewhere in your somewhere in your "public" / "static" folder. You will also have to set the icon path for the component to be able to find them (see package options and component props). A huge thank you to <a href="https://alexisdoreau.com/freebies_gift_download/" target="_blank">Alexis Doreau</a> for designing them. ## Example Once the plugin is installed, you can use the component like this: ```html <template> <gb-social-button network="facebook" size="small" theme="light"> Do something with Facebook </gb-social-button> </template> ``` ## Contributing You are more than welcome to contribute to Vue Social. Just submit changes via pull request and I will review them before merging. 1. Fork it! ๐Ÿค™ 2. Create your feature branch: `git checkout -b my-new-feature` 3. Commit your changes: `git commit -am "Add some feature"` 4. Push to the branch: `git push origin my-new-feature` 5. Submit a pull request ๐Ÿ‘ The documentation is available in the `docs` folder. The Vue Social components are available in the `lib` folder. ## License Vue Social is [MIT licensed](LICENSE).

Web Components & Widgets
56 Github Stars
awesome-cheatsheets
Open Source

awesome-cheatsheets

<div align="center"> [![AWESOME CHEATSHEETS LOGO](_design/[email protected])](https://lecoupa.github.io/awesome-cheatsheets/) <a href="https://trendshift.io/repositories/5584" target="_blank"> <img src="https://trendshift.io/api/badge/repositories/5584" alt="LeCoupa%2Fawesome-cheatsheets | Trendshift" width="250" height="55"/> </a> [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/LeCoupa/awesome-cheatsheets/blob/master/LICENSE) **WEBSITE DIRECTORY**: [Available here](https://lecoupa.github.io/awesome-cheatsheets/) > ๐Ÿ“š Awesome cheatsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single file. </div> --- ## ๐Ÿค” Why Awesome-Cheatsheets? I usually make a cheat sheet when I want to improve my skills in a programming language, a framework or a development tool. [I started doing these kinds of things a long time ago on Gist](https://gist.github.com/LeCoupa). To better keep track of the history and to let people contribute, I re-organized all of them into this single repository. Most of the content is coming from official documentation and some books I have read. Feel free to take a look. You might learn new things. They have been designed to provide a quick way to assess your knowledge and to save you time. --- ## ๐Ÿ“š Table of Contents ### ๐Ÿ“ƒ Languages <details> <summary>View cheatsheets</summary> #### Command line interface - [Bash](languages/bash.sh) #### Imperative - [C](languages/C.txt) - [C#](languages/C%23.txt) - [Go](languages/golang.md) - [Java](languages/java.md) - [PHP](languages/php.php) - [Python](languages/python.md) - [XML](languages/XML.md) #### Functional - [JavaScript](languages/javascript.js) - [Typescript](languages/typescript.md) </details> --- ### ๐Ÿ“ฆ Backend <details> <summary>View cheatsheets</summary> #### PHP - [Laravel](backend/laravel.php) #### Python - [Django](backend/django.py) #### JavaScript - [Adonis.js](backend/adonis.js) - [Express.js](backend/express.js) - [Feathers.js](backend/feathers.js) - [Moleculer](backend/moleculer.js) - [Node.js](backend/node.js) - [Sails.js](backend/sails.js) </details> --- ### ๐ŸŒ Frontend <details> <summary>View cheatsheets</summary> #### Basics - [HTML5](frontend/html5.html) - [CSS3](frontend/css3.css) - [Typescript](frontend/typescript.ts) #### Frameworks - [React.js](frontend/react.js) - [Vue.js](frontend/vue.js) - [Tailwind.css](frontend/tailwind.css) - [Ember.js](frontend/ember.js) - [Angular (2+)](frontend/angular.js) - [AngularJS](frontend/angularjs.js) </details> --- ### ๐Ÿ—ƒ๏ธ Databases <details> <summary>View cheatsheets</summary> #### SQL - [MySQL](databases/mysql.sh) #### NoSQL - [MongoDB](databases/mongodb.sh) - [Redis](databases/redis.sh) </details> --- ### ๐Ÿ”ง Tools <details> <summary>View cheatsheets</summary> #### Development - [cURL](tools/curl.sh) - [Drush](tools/drush.sh) - [Elasticsearch](tools/elasticsearch.js) - [Emmet](tools/emmet.md) - [Git](tools/git.sh) - [Puppeteer](tools/puppeteer.js) - [Sublime Text](tools/sublime_text.md) - [VIM](tools/vim.txt) - [Visual Studio Code](tools/vscode.md) - [Xcode](tools/xcode.txt) #### Infrastructure - [AWS CLI](tools/aws.sh) - [Docker](tools/docker.sh) - [GCP CLI](tools/gcp.md) - [Heroku CLI](tools/heroku.sh) - [Kubernetes](tools/kubernetes.md) - [macOS](tools/macos.sh) - [Nanobox Boxfile](tools/nanobox_boxfile.yml) - [Nanobox CLI](tools/nanobox_cli.sh) - [Nginx](tools/nginx.sh) - [PM2](tools/pm2.sh) - [Ubuntu](tools/ubuntu.sh) - [Firebase CLI](tools/firebase_cli.md) </details> --- ## ๐Ÿ™Œ๐Ÿผ How to Contribute? You are more than welcome to contribute and build your own cheat sheet for your favorite programming language, framework or development tool. Just submit changes via pull request and I will review them before merging. --- ## ๐Ÿ‘ฉโ€๐Ÿ’ป๐Ÿ‘จโ€๐Ÿ’ป Our valuable Contributors <div align="center"> <a href="https://github.com/LeCoupa/awesome-cheatsheets/graphs/contributors"> <img src="https://contributors-img.web.app/image?repo=LeCoupa/awesome-cheatsheets" /> </a> </div>

Documentation Code Quality & Linting
46K Github Stars
awesome-shopify
Open Source

awesome-shopify

# Awesome Shopify > ๐Ÿ‘ฉโ€๐ŸŽ“๐Ÿ‘จโ€๐ŸŽ“ Must-read articles, videos and books for Shopify owners and app developers. <a href="https://www.facebook.com/groups/882441075470395/" target="_blank"> <img width="100%" src="https://raw.githubusercontent.com/growthbunker/awesome-shopify/master/images/shopify_banner.jpg"> </a> ## Table of contents - [Awesome Shopify](#awesome-shopify) - [Table of contents](#table-of-contents) - [Shopify Unite](#shopify-unite) - [Playlists](#playlists) - [Shopify Unite 2019 - Keynotes](#shopify-unite-2019---keynotes) - [Shopify Unite 2019 - Track Sessions](#shopify-unite-2019---track-sessions) - [Shopify Unite 2018 - Keynotes](#shopify-unite-2018---keynotes) - [Shopify Unite 2018 - Track Sessions](#shopify-unite-2018---track-sessions) - [Shopify Unite 2017 - Keynotes](#shopify-unite-2017---keynotes) - [Shopify Unite 2017 - Track Sessions](#shopify-unite-2017---track-sessions) - [Shopify Unite 2016 - Keynotes](#shopify-unite-2016---keynotes) - [Store owners and Shopify marketers](#store-owners-and-shopify-marketers) - [Types of store](#types-of-store) - [Communities and help](#communities-and-help) - [Official social networks](#official-social-networks) - [Main](#main) - [Facebook groups](#facebook-groups) - [Built by Shopify](#built-by-shopify) - [Products](#products) - [Free tools](#free-tools) - [Shopify Plus Features](#shopify-plus-features) - [Others](#others) - [Shopify apps](#shopify-apps) - [Useful tools](#useful-tools) - [Shopify themes](#shopify-themes) - [Marketplaces](#marketplaces) - [Useful tools](#useful-tools-1) - [Marketing resources](#marketing-resources) - [Advertising](#advertising) - [Google Ads (Search, Display, Gmail, Shopping, YouTube)](#google-ads--search--display--gmail--shopping--youtube-) - [Facebook Ads](#facebook-ads) - [Lookalike](#lookalike) - [Retargeting](#retargeting) - [Analytics and reports](#analytics-and-reports) - [Apps](#apps) - [Customer support](#customer-support) - [Emailing](#emailing) - [Pinterest](#pinterest) - [Product inventory](#product-inventory) - [Product and category pages](#product-and-category-pages) - [SEO](#seo) - [Social medias](#social-medias) - [Upselling and cross-promotion](#upselling-and-cross-promotion) - [Others](#others-1) - [Marketing Tools](#marketing-tools) - [Dropshipping](#dropshipping) - [Customer Support for eCommerce](#customer-support-for-ecommerce) - [Shopify experts and agencies](#shopify-experts-and-agencies) - [Great marketing blogs for eCommerces](#great-marketing-blogs-for-ecommerces) - [YouTube channels](#youtube-channels) - [App and theme developers - Shopify partners](#app-and-theme-developers---shopify-partners) - [Communities and help](#communities-and-help-1) - [Official social networks](#official-social-networks-1) - [Facebook groups](#facebook-groups-1) - [Others](#others-2) - [Official resources](#official-resources) - [Developer documentation](#developer-documentation) - [Development tools](#development-tools) - [Theme building](#theme-building) - [Kit skills](#kit-skills) ## Shopify Unite Unite is Shopifyโ€™s annual partner and developer conference. This is where they share their accomplishments as a platform over the past year and plan the future of commerce. To find out more check out the [Unite website](https://unite.shopify.com/). #### Playlists - ๐Ÿ“บ [Shopify Unite 2019: Keynotes](https://www.youtube.com/playlist?list=PLvQF73bM4-5XoGEPnerBbkIef1egtD1x9). - ๐Ÿ“บ [Shopify Unite 2019: Track Sessions](https://www.youtube.com/playlist?list=PLvQF73bM4-5UDT1U9aBOj5AiLxo0z1iDY). - ๐Ÿ“บ [Shopify Unite 2018](https://www.youtube.com/playlist?list=PLvQF73bM4-5Vxu_b8ofskvvRuitNOHnM_). - ๐Ÿ“บ [Shopify Unite 2017](https://www.youtube.com/playlist?list=PLvQF73bM4-5UVzb3UVLU-xCzXLZ2ZbRdV). #### Shopify Unite 2019 - Keynotes - ๐Ÿ“บ [Online Store: Core โ€” Cynthia Savard Saucier](https://www.youtube.com/watch?v=lpCC7LEzN6U). - ๐Ÿ“บ [Online Store: Advanced โ€” David Mollenkamp](https://www.youtube.com/watch?v=BL6t9ebbVhI). - ๐Ÿ“บ [Shopify POS โ€” Arpan Podduturi](https://www.youtube.com/watch?v=hA_LObIJeiQ). - ๐Ÿ“บ [Backoffice โ€” Lynsey Thornton](https://www.youtube.com/watch?v=IZZmmoC87Vs). - ๐Ÿ“บ [Shopify Plus โ€” Katie Cerar](https://www.youtube.com/watch?v=s-leL9XcdFM). - ๐Ÿ“บ [Developer products โ€” Vanessa Lee](https://www.youtube.com/watch?v=pbZm4Afwpt0). - ๐Ÿ“บ [Shopify Fulfillment Network โ€” Craig Miller](https://www.youtube.com/watch?v=YRRwW8fiHUY). - ๐Ÿ“บ [Closing Keynote: The Opportunity Ahead โ€” Harley Finkelstein](https://www.youtube.com/watch?v=1HD4uGlS1SM). - ๐Ÿ“บ [AMA with Tobi Lรผtke](https://www.youtube.com/watch?v=spumKePGEiU). - ๐Ÿ“บ [An Insider's Look at the Technology That Powers Shopify โ€” Jean-Michel Lemieux](https://youtube.com/watch?v=Th7XN__ltyc). - ๐Ÿ“บ [Closing Remarks โ€” Atlee Clark](https://www.youtube.com/watch?v=QcfacP_rNkc). #### Shopify Unite 2019 - Track Sessions - ๐Ÿ“บ [Introducing: A New Store Design Experience](https://www.youtube.com/watch?v=HlpOGQrRBPY). - ๐Ÿ“บ [How to Gain and Engage App Users Through Kit Skills](https://www.youtube.com/watch?v=3HxqnEAo14Q). - ๐Ÿ“บ [Building for a Global Audience](https://www.youtube.com/watch?v=L1S-MI7Jmvs). - ๐Ÿ“บ [Building for Large Merchants](https://www.youtube.com/watch?v=tqi0ojNmwNY). - ๐Ÿ“บ [Building Multilingual Apps](https://www.youtube.com/watch?v=s2OxalKxEig). - ๐Ÿ“บ [Wield More Control over Shipping](https://www.youtube.com/watch?v=sFkThKtXyoo). - ๐Ÿ“บ [Empowering Leading Brands Now and in the Future](https://www.youtube.com/watch?v=rvtaJYfBK-o). - ๐Ÿ“บ [Choosing GraphQL: APIs for the Future](https://www.youtube.com/watch?v=ezvp0eIiQoQ). - ๐Ÿ“บ [New Ways to Grow Your Business on the Shopify App Store](https://www.youtube.com/watch?v=TTnJo3tx1pU). - ๐Ÿ“บ [The Shopify Experts Marketplace](https://www.youtube.com/watch?v=IpNZhZqzvJM). - ๐Ÿ“บ [AMA With Shopify's Director of Partner Platform](https://www.youtube.com/watch?v=njXRsajzTm0). - ๐Ÿ“บ [Building Apps That Open Doors for Retail Merchants](https://www.youtube.com/watch?v=snq8M9eqWtU). - ๐Ÿ“บ [Discovering Apps Across Shopify](https://www.youtube.com/watch?v=l68v6UxH3Ms). - ๐Ÿ“บ [Making Good Apps Great](https://www.youtube.com/watch?v=tPjUCEy_IrY). - ๐Ÿ“บ [Automation as a Service: Leverage Shopify Flow to Grow Your Agency](https://www.youtube.com/watch?v=oglkzIGZNdU). - ๐Ÿ“บ [Better Buyer Relationships Through Order Editing](https://www.youtube.com/watch?v=KBnm0kWXvEg). - ๐Ÿ“บ [How to Close Your First 1000 Customers Based Solely on Data](https://www.youtube.com/watch?v=iR-Lr7xYWew). - ๐Ÿ“บ [How to Build an App in 15 Minutes](https://www.youtube.com/watch?v=gwp2rL_fdmY). - ๐Ÿ“บ [Building Integrations and Partnerships in the Shopify Ecosystem](https://www.youtube.com/watch?v=Upu72vtYEzU). - ๐Ÿ“บ [Integration Testing for Themes](https://www.youtube.com/watch?v=kRTma2CztxE). - ๐Ÿ“บ [Lessons Learned Building Apps for Shopify](https://www.youtube.com/watch?v=bkVGAJFmEIk). - ๐Ÿ“บ [Metafields: Today and Tomorrow](https://www.youtube.com/watch?v=tIKJfI1oR4Y). - ๐Ÿ“บ [Mobile First Is Dead โ€” Long Live Mobile Only](https://www.youtube.com/watch?v=z5k3gni87Bw). - ๐Ÿ“บ [Setting and Executing Your Agencyโ€™s Strategy](https://www.youtube.com/watch?v=MgDUwqFg_Vg). - ๐Ÿ“บ [Storefront API and Vue.js: Leveling up Your Shopify Theme Development](https://www.youtube.com/watch?v=kJnec0sk2Ak). - ๐Ÿ“บ [Strategies for Building the Best Themes for Clients](https://www.youtube.com/watch?v=VGT-j61MwgU). - ๐Ÿ“บ [The Four Habits of Highly Effective Apps](https://www.youtube.com/watch?v=D79ey8MOzS8). - ๐Ÿ“บ [Create Value for Merchants with Better Discounting](https://www.youtube.com/watch?v=SZ3mf35AVdc). - ๐Ÿ“บ [Deconstructing the Monolith](https://www.youtube.com/watch?v=ISYKx8sa53g). - ๐Ÿ“บ [Improving Shopping Experiences with Video & 3D Merchandising](https://www.youtube.com/watch?v=JuqfvD-6vZY). - ๐Ÿ“บ [Managing Projects to Deliver Best-in-Class Service to Merchants](https://www.youtube.com/watch?v=qQ7FTkhhdmo). - ๐Ÿ“บ [Fulfillment APIs: Building a Stronger Foundation](https://www.youtube.com/watch?v=vutkRgggp6M). - ๐Ÿ“บ [Leveraging Shopify in Regulated Markets](https://www.youtube.com/watch?v=gauco9oQ5e8). - ๐Ÿ“บ [The Power of Unique Shopping Experiences](https://www.youtube.com/watch?v=mRMIrZ5BtY0). - ๐Ÿ“บ [New Opportunities for Checkout](https://www.youtube.com/watch?v=Ves4sdqRWkA). #### Shopify Unite 2018 - Keynotes - ๐Ÿ“บ [CEO Tobi Lutke and Prime Minister Justin Trudeau Fireside Chat](https://www.youtube.com/watch?v=V15iFA347no). - ๐Ÿ“บ [More Voices // Tobi Lรผtke](https://www.youtube.com/watch?v=L9rpTw0nTRc). - ๐Ÿ“บ [Commerce and Retail // Satish Kanwar](https://www.youtube.com/watch?v=jl29jhnNsIs). - ๐Ÿ“บ [Own Your Time // Lynsey Thornton](https://www.youtube.com/watch?v=8DCbNC6Jn9E). - ๐Ÿ“บ [App and Partner Platform // Brandon Chu](https://www.youtube.com/watch?v=XiN3worMnCE). - ๐Ÿ“บ [Closing Keynote // Harley Finkelstein](https://www.youtube.com/watch?v=woLkoDmZ7hw). #### Shopify Unite 2018 - Track Sessions - ๐Ÿ“บ [Building Scalable Apps](https://www.youtube.com/watch?v=2GC6mnBbe_o). - ๐Ÿ“บ [Navigating the Implications of GDPR and Building Trust With Merchants](https://www.youtube.com/watch?v=qjCmSVGudUY). - ๐Ÿ“บ [Building Apps with GraphQL](https://www.youtube.com/watch?v=bHSz1zwwSJQ). - ๐Ÿ“บ [Welcome to Track 1: Building](https://www.youtube.com/watch?v=h7HH_p5IP68). - ๐Ÿ“บ [Extending your apps into Shopify App Extensions](https://www.youtube.com/watch?v=WOuCapst4dI). - ๐Ÿ“บ [Building Marketing Apps for All Entrepreneurs](https://www.youtube.com/watch?v=UrUaRIWRSAg). - ๐Ÿ“บ [Architecture of a Shopify App](https://www.youtube.com/watch?v=aGNlgRysLqk). - ๐Ÿ“บ [Multi-Location Inventory: Unlocking New Opportunities](https://www.youtube.com/watch?v=k9f49DMlERc). - ๐Ÿ“บ [Boost Your App with Discounts](https://www.youtube.com/watch?v=MfzVq8PxAn4). - ๐Ÿ“บ [Increasing App Visibility and Lead Quality](https://www.youtube.com/watch?v=1m-BGO_IGqM). - ๐Ÿ“บ [Selling Shopify Plus](https://www.youtube.com/watch?v=EM_tfvLj73Y). - ๐Ÿ“บ [Creating Accessible Themes](https://www.youtube.com/watch?v=yuAY-XPLqCA). - ๐Ÿ“บ [Designing High Impact Teams for Scale](https://www.youtube.com/watch?v=uhF3yto3YWU). - ๐Ÿ“บ [Building Retail Partnerships](https://www.youtube.com/watch?v=7yytmAtsO64). - ๐Ÿ“บ [Scaling Support Systems](https://www.youtube.com/watch?v=S9Z79NENiXQ). - ๐Ÿ“บ [The Power of Community](https://www.youtube.com/watch?v=Y0DisCg89mg). - ๐Ÿ“บ [Growing your Customer Base](https://www.youtube.com/watch?v=6o5SyxfK4ts). - ๐Ÿ“บ [Project Management and Building Client Trust](https://www.youtube.com/watch?v=8g0ZtdN6LWw). #### Shopify Unite 2017 - Keynotes - ๐Ÿ“บ [Take the Path That Leads to More Entrepreneurs // Tobi Lรผtke](https://www.youtube.com/watch?v=7alETpaffOQ). - ๐Ÿ“บ [Welcome to Shopify Unite // Harley Finkelstein](https://www.youtube.com/watch?v=nKKW9CN9-RY). - ๐Ÿ“บ [Insights on Shopify Merchants // Lynsey Thornton](https://www.youtube.com/watch?v=deYxue0W1n8). - ๐Ÿ“บ [Today: Shopify Merchants and Consumers // Satish Kanwar](https://www.youtube.com/watch?v=dvfJ2f6q8MY). - ๐Ÿ“บ [Solving Complex Problems, Simply // Christopher Lobay](https://www.youtube.com/watch?v=e_9JxUoX_Yc). - ๐Ÿ“บ [Shopify Platform and App Extensibility // Atlee Clark](https://www.youtube.com/watch?v=FX5dyxx_ueg). #### Shopify Unite 2017 - Track Sessions - ๐Ÿ“บ [Powered by Shopify: Pop-Ups and Point of Sale](https://www.youtube.com/watch?v=IEuwN0cF4hA). - ๐Ÿ“บ [Mobile-First Apps](https://www.youtube.com/watch?v=81YvyAGVFJo). - ๐Ÿ“บ [Theme Development: New Tools, Better Liquid](https://www.youtube.com/watch?v=MDqDIIyxIcU). - ๐Ÿ“บ [Shopify Polaris: A Design System for Better Shopify App UX](https://www.youtube.com/watch?v=6jj19_T9uE8). - ๐Ÿ“บ [Building Storefronts Anywhere](https://www.youtube.com/watch?v=QuSPkX5CA0A). - ๐Ÿ“บ [Working Together to Win Plus Deals](https://www.youtube.com/watch?v=1Z4u_XBIZe0). - ๐Ÿ“บ [Designing the Best Support Solutions](https://www.youtube.com/watch?v=2CkA_0iTgE8). - ๐Ÿ“บ [Shopify Plus: A Year in Review](https://www.youtube.com/watch?v=taRXW22dGlw). - ๐Ÿ“บ [Building Powerful Marketing Apps](https://www.youtube.com/watch?v=T80O2hjuubk). - ๐Ÿ“บ [Building Integrated and Flexible Sales Channel Apps](https://www.youtube.com/watch?v=i3oqifThCOI). - ๐Ÿ“บ [Designing Ecommerce for Who Your Customers Want to Be](https://www.youtube.com/watch?v=DPvdw864xR8). - ๐Ÿ“บ [Opportunities for Your Next Shopify App](https://www.youtube.com/watch?v=ZcbYkVzVitk). - ๐Ÿ“บ [How to Effectively Scope Shopify Projects: Partner Panel](https://www.youtube.com/watch?v=8l0tbz3qDvM). - ๐Ÿ“บ [Reducing Commerce Complexity](https://www.youtube.com/watch?v=KZFq_UDBkus). - ๐Ÿ“บ [An AMA with Shopifyโ€™s Tobi Lรผtke](https://www.youtube.com/watch?v=wrZiOxw0wXE). - ๐Ÿ“บ [Examining Shopify Plus Merchant Personas](https://www.youtube.com/watch?v=5Khry652qdw). - ๐Ÿ“บ [Native Mobile Apps](https://www.youtube.com/watch?v=h8tNhZ0kmi0). - ๐Ÿ“บ [Wholesale as a Channel for Growth](https://www.youtube.com/watch?v=AmNc_My43w8). - ๐Ÿ“บ [Building Custom Commerce Experiences](https://www.youtube.com/watch?v=m7icJE2AGNU). - ๐Ÿ“บ [Redefining Discounts](https://www.youtube.com/watch?v=mtZ1qqVIo-o). - ๐Ÿ“บ [Stories of Success: Merchant Panel](https://www.youtube.com/watch?v=cKvtXecgkOw). - ๐Ÿ“บ [The Shopify Plus Partner Program](https://www.youtube.com/watch?v=Uta3qatphqo). - ๐Ÿ“บ [Product Management Fundamentals from Ideation to Launch: Partner Panel](https://www.youtube.com/watch?v=JAs4IK4li4I). - ๐Ÿ“บ [Marketing Your Shopify App in The Shopify App Store](https://www.youtube.com/watch?v=CHNl3raMffc). - ๐Ÿ“บ [Building and Growing an Engaged Community: Partner Panel](https://www.youtube.com/watch?v=-NHIWQb8v8s). - ๐Ÿ“บ [Building Your Shopify App Backend for High-Volume Merchants](https://www.youtube.com/watch?v=nzKwosYpn4w). - ๐Ÿ“บ [Powered By Shopify: Popups and Point Of Sale](https://www.youtube.com/watch?v=CiOiwSwpORY). - ๐Ÿ“บ [How Your Agency Can Maximize Marketing With Any Budget: Partner Panel](https://www.youtube.com/watch?v=cvafwl7Ylt8). - ๐Ÿ“บ [Shopify App Support & Building Merchant Loyalty: Partner Panel](https://www.youtube.com/watch?v=mOjg-ffcIKo). - ๐Ÿ“บ [Scaling the Shopify Partner Ecosystem](https://www.youtube.com/watch?v=OkyX9Z7fIEk). - ๐Ÿ“บ [Building Shopify Apps for Shopify Plus Merchants](https://www.youtube.com/watch?v=_PssBPmOkQc). - ๐Ÿ“บ [Trends in Media and Retail: Interview with Ben Kaufman of BuzzFeed](https://www.youtube.com/watch?v=Da7S2NMJvgg). - ๐Ÿ“บ [Working with Shopify Plus Clients: Advice from Shopify Plus Partners](https://www.youtube.com/watch?v=JzhsXvbVQEk). #### Shopify Unite 2016 - Keynotes - ๐Ÿ“บ [Using the Online Store Editor](https://www.youtube.com/watch?v=scXePsSa-Jc). - ๐Ÿ“บ [Theme Accessibility](https://www.youtube.com/watch?v=gyFbrIp_Flw). - ๐Ÿ“บ [Post-Order Opportunities](https://www.youtube.com/watch?v=OgJoYsb3AKw). - ๐Ÿ“บ [Using the JavaScript Buy SDK](https://www.youtube.com/watch?v=_YX_zG5PnqI). - ๐Ÿ“บ [Exceptional Ecommerce Design](https://www.youtube.com/watch?v=EYndg79qOlo). - ๐Ÿ“บ [New API's for your next Shopify App](https://www.youtube.com/watch?v=5AxGgrTmDUI). - ๐Ÿ“บ [Understanding the Mind of a Shopify Merchant](https://www.youtube.com/watch?v=xv7P-w1h-cE). - ๐Ÿ“บ [The Power of Webhooks](https://www.youtube.com/watch?v=uYueG-MsMRk). - ๐Ÿ“บ [Making Money from your Shopify App](https://www.youtube.com/watch?v=IbXczdhAB_s). - ๐Ÿ“บ [Building a Sales Channel](https://www.youtube.com/watch?v=b07xUMf_CV0). - ๐Ÿ“บ [How to Succeed on the App Store](https://www.youtube.com/watch?v=lzy69ByiTS4). - ๐Ÿ“บ [Best Practices for Building Shopify Themes](https://www.youtube.com/watch?v=pwOhcVO6M3M). ## Store owners and Shopify marketers ### Types of store - ๐Ÿ› [Shopify Basic, Normal and Advanced](https://www.shopify.com/pricing). - ๐Ÿ› [Shopify Plus](https://www.shopify.com/plus). - ๐Ÿ› [Shopify Lite](https://www.shopify.com/lite). - ๐Ÿ“– [Shopify vs Shopify Plus: Which Version is Right forย You?](https://gorgias.io/blog/shopify-vs-shopify-plus) ### Communities and help ### Official social networks - ๐Ÿ‘ฅ [Shopify Blog](https://www.shopify.com/blog). - ๐Ÿ‘ฅ [Shopify Youtube](https://www.youtube.com/user/shopify). - ๐Ÿ‘ฅ [Shopify Instagram](https://www.instagram.com/shopify). - ๐Ÿ‘ฅ [Shopify Linkedin](https://www.linkedin.com/company/shopify). - ๐Ÿ‘ฅ [Shopify Twitter](https://twitter.com/Shopify). - ๐Ÿ‘ฅ [Shopify Plus Twitter](https://twitter.com/shopifyplus). - ๐Ÿ‘ฅ [Shopify Support Twitter](https://twitter.com/shopifysupport). - ๐Ÿ‘ฅ [Shopify Snapchat](https://www.snapchat.com/add/shopify). - ๐Ÿ‘ฅ [Shopify Pinterest](https://www.pinterest.com/shopify). - ๐Ÿ‘ฅ [Shopify Status](https://status.shopify.com/). #### Main - ๐Ÿ‘ฅ [Shopify subreddit](https://www.reddit.com/r/shopify/). - ๐Ÿ‘ฅ [Shopify Meetups](https://meetups.shopify.com/). - ๐Ÿ‘ฅ [Shopify forums](https://community.shopify.com/). #### Facebook groups - ๐Ÿ‘ฅ [Growth Bunker Shopify VIP](https://www.facebook.com/groups/882441075470395). ### Built by Shopify #### Products - ๐Ÿš€ [Shopify Fulfillment Network](https://www.shopify.com/fulfillment). - ๐Ÿš€ [Shopify Shipping](https://www.shopify.com/shipping). - ๐Ÿš€ [Shopify POS](https://www.shopify.com/pos) on [Shopify Hardware](https://hardware.shopify.com/). - ๐Ÿš€ [Shopify Payments](https://www.shopify.com/payments). - ๐Ÿš€ [Shopify Buy Button](https://www.shopify.com/buy-button). - ๐Ÿš€ [Shopify Sales Channels](https://www.shopify.com/channels). - ๐Ÿš€ [Shopify Storefront](https://www.shopify.com/custom-storefront-tools). - ๐Ÿš€ [Shopify Oberlo](https://www.shopify.com/oberlo). - ๐Ÿš€ [Shopify Ping](https://www.shopify.com/ping). - ๐Ÿš€ [Shopify Kit](https://www.shopify.com/kit). #### Apps - ๐Ÿ“ฆ [Advanced Cash on Delivery](https://apps.shopify.com/advanced-cash-on-delivery): Control how buyers use COD on your store (India only). - ๐Ÿ“ฆ [Amazon channel](https://apps.shopify.com/amazon): Sell on Amazon by listing your products and managing orders. - ๐Ÿ“ฆ [Apple Business Chat](https://apps.shopify.com/apple-business-chat): Let customers contact you directly in Appleโ€™s Messages app. - ๐Ÿ“ฆ [Buy Button channel](https://apps.shopify.com/buy-button): Sell your products on any website or blog. - ๐Ÿ“ฆ [Digital Downloads](https://apps.shopify.com/digital-downloads): Sell digital products in your store. - ๐Ÿ“ฆ [Fraud Filter](https://apps.shopify.com/fraud-filter): Create custom filters to help you prevent fraud. - ๐Ÿ“ฆ [Facebook Marketing](https://apps.shopify.com/facebook-marketing): Promote products to the right audience on Facebook. - ๐Ÿ“ฆ [Facebook Shop channel](https://apps.shopify.com/facebook-store): Sell on Facebook from the Shop section of your Facebook Page. - ๐Ÿ“ฆ [Geolocation](https://apps.shopify.com/geolocation): Boost global sales with language and currency recommendations. - ๐Ÿ“ฆ [Google Shopping](https://apps.shopify.com/google-shopping): Show products to interested customers across Google's Network. - ๐Ÿ“ฆ [Instagram channel](https://apps.shopify.com/instagram): Sell on Instagram by tagging products in your posts & stories. - ๐Ÿ“ฆ [Kit](https://apps.shopify.com/kit): Run better Facebook ads. - ๐Ÿ“ฆ [Launchpad](https://apps.shopify.com/launchpad): Schedule and monitor sales, releases, and content changes. - ๐Ÿ“ฆ [Messenger channel](https://apps.shopify.com/messenger): Sell products and provide customer support from Messenger. - ๐Ÿ“ฆ [Oberlo โ€‘ Dropshipping App](https://apps.shopify.com/oberlo): Find products to sell on Shopify. - ๐Ÿ“ฆ [Order Printer](https://apps.shopify.com/order-printer): Print invoices, labels, receipts, packing slips, and more. - ๐Ÿ“ฆ [Point of Sale](https://apps.shopify.com/shopify-pos): Sell anywhere. Accept any payment. Grow your business. - ๐Ÿ“ฆ [Product Reviews](https://apps.shopify.com/product-reviews): The simplest way to share your customers' experiences. - ๐Ÿ“ฆ [Retail Barcode Labels](https://apps.shopify.com/retail-barcode-labels): Create and print barcode labels for your products. - ๐Ÿ“ฆ [Return Magic](https://apps.shopify.com/returnmagic): Top-rated return solution. Make your returns magical! - ๐Ÿ“ฆ [Script Editor](https://apps.shopify.com/script-editor): Create personalized checkout experiences & powerful promotion. - ๐Ÿ“ฆ [Shopcodes](https://apps.shopify.com/shopcodes): Market products and link to checkout with Shopify QR codes. - ๐Ÿ“ฆ [Shopify Chat](https://apps.shopify.com/chat): Chat live with store visitors. Turn visitors into customers. - ๐Ÿ“ฆ [Shopify Flow](https://apps.shopify.com/flow): Turn tasks into automations so you can get back to business. - ๐Ÿ“ฆ [Stocky](https://apps.shopify.com/stocky): Inventory Management, Purchase Orders, Stocktakes, and More. - ๐Ÿ“ฆ [Transporter](https://apps.shopify.com/transporter): The fastest and easiest way to switch to Shopify Plus. #### Free tools - โš™๏ธ [Free tools directory](https://www.shopify.com/tools). - โš™๏ธ [Logo maker (Hatchful)](https://hatchful.shopify.com). - โš™๏ธ [Business name generator](https://www.shopify.com/tools/business-name-generator). - โš™๏ธ [Slogan maker](https://www.shopify.com/tools/slogan-maker). - โš™๏ธ [Pay stub generator](https://www.shopify.com/tools/pay-stub-generator). - โš™๏ธ [QR code generator](https://www.shopify.com/pos/qr-code-generator). - โš™๏ธ [Terms and conditions generator](https://www.shopify.com/tools/policy-generator/terms-and-conditions). - โš™๏ธ [Privacy policy generator](https://www.shopify.com/tools/policy-generator). - โš™๏ธ [Business card maker](https://www.shopify.com/tools/business-card-maker). - โš™๏ธ [Gift certificate template](https://www.shopify.com/tools/gift-certificate-template). - โš™๏ธ [Invoice generator](https://www.shopify.com/pos/invoice-generator). - โš™๏ธ [Purchase order template](https://www.shopify.com/tools/purchase-order-template). - โš™๏ธ [Shipping label template](https://www.shopify.com/tools/shipping-label-template). - โš™๏ธ [Return policy generator](https://www.shopify.com/tools/policy-generator/refund). - โš™๏ธ [Bill of lading form](https://www.shopify.com/tools/bill-of-lading). - โš™๏ธ [Barcode generator](https://www.shopify.com/tools/barcode-generator). - โš™๏ธ [Image resizer](https://www.shopify.com/tools/image-resizer). - โš™๏ธ [Business loan calculator](https://www.shopify.com/tools/business-loan-calculator). - โš™๏ธ [CPM calculator](https://www.shopify.com/tools/cpm-calculator). - โš™๏ธ [Profit margin calculator](https://www.shopify.com/tools/profit-margin-calculator). #### Shopify Plus Features - ๐ŸŒŸ [Shopify Flow](https://www.shopify.com/plus/solutions/ecommerce-automation). - ๐ŸŒŸ [Shopify Launchpad](https://www.shopify.com/plus/solutions/ecommerce-campaigns-flash-sale-automation). ##### Others - ๐Ÿ’ฐ [Exchange Marketplace](https://exchangemarketplace.com/). ### Shopify apps #### Useful tools - โš™๏ธ [Huntify](https://www.huntify.io/): a leaderboard of new Shopify Apps where each day app developers will submit their apps to the community for everyone to vote on. ### Shopify themes #### Marketplaces - ๐ŸŽจ [Shopify Themes Marketplace](https://themes.shopify.com/). - ๐ŸŽจ [Themeforest Shopify (Envato Market)](https://themeforest.net/category/ecommerce/shopify). - ๐ŸŽจ [Creative Market Shopify](https://creativemarket.com/themes/shopify). #### Useful tools - โš™๏ธ [WhatStoreTheme](https://whatstoretheme.com/): Get to know what shopify theme an online store is using. ### Marketing resources #### Advertising ##### Google Ads (Search, Display, Gmail, Shopping, YouTube) - ๐Ÿ“– [4 Advanced AdWords Audience Targetingย Tactics](https://www.searchenginejournal.com/advanced-adwords-audience-targeting-tactics/232711/). - ๐Ÿ“– [Target or Retarget Potential Customers on Gmail Ads. Analyse Your Cost per Conversion and Retarget on Desktop for Better Profitability](https://www.growthbunker.com/experiments/details/2). - ๐Ÿ“– [Automatically sync your Shopify products with Google Shopping and advertise them across Google's Network](https://www.growthbunker.com/experiments/details/8). ##### Facebook Ads - ๐Ÿ“– [The top 9+4 Custom Audiences with really high ROI](https://newsfeed.org/top-9-4-custom-audiences-with-really-high-roi/). ##### Lookalike - ๐Ÿ“– [Advertise some products to audiences who are similar to the current customers or a specific segment of people](https://www.growthbunker.com/experiments/details/12). - ๐Ÿ“– [7 eCommerce Lookalike Audiences That Are Worthย Testing](https://blog.ladder.io/ecommerce-lookalike-audiences/). - ๐Ÿ“– [The \$1,500 Facebook Audience Experiment: 1% vs. 5% vs. 10%ย Lookalike](https://adespresso.com/blog/adespresso-experiment-facebook-lookalike-audience/). - ๐Ÿ“– [Quick Guide to Facebook Value-Based Lookalikeย Audiences](https://blog.adstage.io/2017/06/29/facebook-value-based-lookalike-audiences). - ๐Ÿ“– [Advertisers seeing dwindling results with Facebook's 1% Lookalike Audiences](https://marketingland.com/advertisers-seeing-dwindling-results-with-facebooks-1-lookalike-audiences-261045). - ๐Ÿ“– [Facebook Ads: Create a Value-Based Lookalike Audience](https://www.jonloomer.com/2017/06/01/facebook-ads-value-based-lookalike-audience/). - ๐Ÿ“– [About similar audiences on the Displayย Network](https://support.google.com/google-ads/answer/2676774?hl=en). - ๐Ÿ“– [7 Things You Need to Know About LinkedIn Lookalike Audiences](https://business.linkedin.com/marketing-solutions/blog/linkedin-b2b-marketing/2019/7-things-you-need-to-know-about-linkedin-lookalike-audiences). ##### Retargeting - ๐Ÿ“– [Retarget your visitors with authentic review videos that demo the products they browsed (but did not buy)](https://www.growthbunker.com/experiments/details/10). - ๐Ÿ“– [35 Retargeting Campaigns Youโ€™ve Never Heard Of Before](https://klientboost.com/retargeting/retargeting/). - ๐Ÿ“– [Retargeting campaigns: 25 tips from marketing experts](https://blog.rebrandly.com/retargeting-campaigns/). #### Analytics and reports - ๐Ÿ“– [6 Types of Inventory and Sales Reports to Use in Your Retail Store](https://www.vendhq.com/blog/retail-inventory-sales-reports/). #### Apps - ๐Ÿ“– [Best 14 Free Shopify Apps You Need toย Install](https://www.oberlo.com/blog/top-14-free-shopify-apps-need-install). - ๐Ÿ“– [Best shopify apps to increase sales for Blackย Friday](https://gorgias.io/blog/best-shopify-apps-increase-sales). - ๐Ÿ“– [20 Best Shopify Apps to Boost Your Shopify Storeย Performance](https://gorgias.io/blog/best-shopify-apps). #### Customer support - ๐Ÿ“– [5 Reasons Why Live Chat is Important for Your Businessย Website](https://www.liveagent.com/blog/5-reasons-why-live-chat-is-important-for-your-business-website/). #### Emailing - ๐Ÿ“– [Ecommerce Email Marketing Statistics 2018 [Infographic]](https://www.omnisend.com/blog/ecommerce-email-marketing-statistics-infographic/). #### Pinterest - ๐Ÿ“บ [Pinterest Conversion Tag Setup for your Shopify Store](https://www.youtube.com/watch?v=3Nrwab18E48). - ๐Ÿ“บ [Setup Pinterest Rich Pins for your Shopify Store](https://www.youtube.com/watch?v=2OhYBx2x3Ng). #### Product inventory - ๐Ÿ“– [9 Tips to Manage Out-of-stock Inventory](https://www.practicalecommerce.com/9-tips-manage-stock-inventory). - ๐Ÿ“– [Highlight scarcity and encourage customers to order now by showing when the inventory is low for the visited product](https://www.growthbunker.com/experiments/details/14). - ๐Ÿ“– [While Supplies Last: How to Use Scarcity and Urgency to Increaseย Sales](https://www.shopify.in/blog/using-scarcity-urgency-increase-sales). #### Product and category pages - ๐Ÿ“– [Ecommerce Product Pages: 6 Shopify Examples to Learnย from](https://www.oberlo.com/ebooks/powerful-product-pages/best-product-pages). - ๐Ÿ“– [Maintain an FAQ on the product/collection pages to build trust, improve SEO, and save time on customer support](https://www.growthbunker.com/experiments/details/13). - ๐Ÿ“– [13 of the Best Product Page Examples Weโ€™ve Seen (and Why Theyย Work)](https://sleeknote.com/blog/product-page-examples). - ๐Ÿ“– [Why Your Storeโ€™s FAQ Page is More Important Than Youย Think](https://woocommerce.com/posts/faq-page-design/). - ๐Ÿ“– [Common online store FAQs for yourย customers](https://ozcartecommerce.com/ecommerce/common-online-store-faqs-for-your-customers). - ๐Ÿ“– [What the FAQ? Do's and Don'ts ofย FAQ's](https://www.userlike.com/en/blog/what-the-faq-dos-and-donts-of-faqs). - ๐Ÿ“– [3 Ways to Create a Good (And SEO-friendly!) FAQ Page](https://www.volusion.com/blog/create-seo-friendly-faq-page/). - ๐Ÿ“– [23 Tactics to Create Urgency and Grow Your eCommerceย Conversions](https://www.coredna.com/blogs/how-to-create-urgency-in-ecommerce). - ๐Ÿ“– [14 Bullet-Proof Techniques to Create Urgency on Ecommerce Productย Pages](https://www.growcode.com/blog/create-urgency-ecommerce-product-pages/). - ๐Ÿ“– [Evergreen Tactics To Increase Ecommerce Conversion Sales](https://vwo.com/blog/increase-ecommerce-conversion-sales/). - ๐Ÿ“– [How to Use Urgency and Scarcity to Increase Your Onlineย Sales](https://beeketing.com/blog/use-urgency-scarcity-to-increase-online-sales/). #### SEO - ๐Ÿ“– [For SEO, How Fast Is Fast Enough?](https://www.practicalecommerce.com/for-seo-how-fast-is-fast-enough). #### Social medias - ๐Ÿ“– [Publish a Viral Twitter Thread Around Your Product Story. When Performing, Promote It with Twitter Ads](https://www.growthbunker.com/experiments/details/3). - ๐Ÿ“– [Take advantage of indirect advertising by encouraging your customers to unbox and review your product on social networks](https://www.growthbunker.com/experiments/details/7). #### Upselling and cross-promotion - ๐Ÿ“– [Set up Buy-One-Get-One (BOGO) discounts to incentivize your customers to purchase a products or to empty your inventory](https://www.growthbunker.com/experiments/details/9). - ๐Ÿ“– [How To Turn Your Shopify Thank You Page Into An Opportunity For More Sales](https://spently.com/blog/how-to-turn-your-shopify-thank-you-page-into-an-opportunity-for-more-sales). - ๐Ÿ“– [Upsell customers on the thank you page with an upgraded version or by cross-selling complementary products](https://www.growthbunker.com/experiments/details/11). #### Others - ๐Ÿ“– [Growth Hacking eCommerce: 18 Underrated Hacks To Convert More Visitors](https://www.coredna.com/blogs/ecommerce-growth-hacks). ### Marketing Tools - โš™๏ธ [Which apps does a Shopify store use?](https://whichshopifyapps.com/#!/). - โš™๏ธ [BuiltWith](https://builtwith.com/). ### Dropshipping - ๐Ÿšš [Oberlo](https://www.oberlo.com/). - ๐Ÿšš [Modalyst](https://modalyst.co/). - ๐Ÿšš [Thieve](https://thieve.co). ### Customer Support for eCommerce - ๐Ÿ’ฌ [Gorgias](https://gorgias.io/). - ๐Ÿ’ฌ [Richpanel](https://richpanel.com/). - ๐Ÿ’ฌ [Shopify Chat](https://apps.shopify.com/chat). ### Shopify experts and agencies - ๐Ÿง  [Shopify Experts](https://experts.shopify.com/). - ๐Ÿง  [Shopify Plus Partners (Service)](https://www.shopify.com/plus/partners/service). - ๐Ÿง  [Shopify Plus Partners (Technology)](https://www.shopify.com/plus/partners/technology). - ๐Ÿง  [We Make Websites](https://wemakewebsites.com/). - ๐Ÿง  [Disco](https://www.discolabs.com/). - ๐Ÿง  [P3 Media](https://pthreemedia.com/). - ๐Ÿง  [Pixelcabin](https://pixelcabin.io/). - ๐Ÿง  [ShopPad](https://www.theshoppad.com/). - ๐Ÿง  [Pixel Union](https://pixelunion.agency/). - ๐Ÿง  [Elkfox](https://elkfox.com/). ### Great marketing blogs for eCommerces - ๐Ÿ“– [Sleeknote Blog](https://sleeknote.com/blog). - ๐Ÿ“– [Bootstrapping eCommerce](https://bootstrappingecommerce.com/). - ๐Ÿ“– [Spently Blog](https://spently.com/blog). - ๐Ÿ“– [Volusion Blog](https://www.volusion.com/blog/). - ๐Ÿ“– [Gorgias Blog (focused on customer support)](https://gorgias.io/blog). - ๐Ÿ“– [Ecommerce Tech](https://ecommercetech.io/). ### YouTube channels - ๐Ÿ“บ [Curious Themes - Shopify Experts](https://www.youtube.com/channel/UCztm-DxaKV1EpXSVxlVvbeg/videos). - ๐Ÿ“บ [Jody Edgar - The Shopify Expert](https://www.youtube.com/user/howtoshopify/videos). - ๐Ÿ“บ [EcommerceTech](https://www.youtube.com/channel/UCGKhbXblT3eX6V4-vVqQVnw/videos). ## App and theme developers - Shopify partners ### Communities and help #### Official social networks - ๐Ÿ‘ฅ [Shopify Partners Facebook](https://www.facebook.com/shopifypartners). - ๐Ÿ‘ฅ [Shopify Partners Twitter](https://twitter.com/ShopifyPartners). - ๐Ÿ‘ฅ [Shopify Dev Team Twitter](https://twitter.com/ShopifyDevs). - ๐Ÿ‘ฅ [Shopify UX Twitter](https://twitter.com/shopifyux). - ๐Ÿ‘ฅ [Shopify UX Medium](https://ux.shopify.com/). #### Facebook groups - ๐Ÿ‘ฅ [Shopify Partners (Facebook Group)](https://www.facebook.com/groups/241826302971328). - ๐Ÿ‘ฅ [Shopify Partners India (Facebook Group)](https://www.facebook.com/groups/1881790712089368). #### Others - ๐Ÿ‘ฅ [Partnersmap](https://partnermaps.io/). ### Official resources - ๐Ÿ“– [Shopify Developers Changelog](https://developers.shopify.com/changelog). - ๐Ÿ“– [Shopify Partner Academy](https://partner-training.shopify.com/my_courses). - ๐Ÿ“– [Shopify app requirements checklist](https://help.shopify.com/en/api/app-store/listing-in-the-app-store/app-requirements). ### Developer documentation - ๐Ÿ“– [Getting started](https://help.shopify.com/en/api/getting-started). - ๐Ÿ“– [API versioning](https://help.shopify.com/en/api/versioning). - ๐Ÿ“– [API guides](https://help.shopify.com/en/api/guides). - ๐Ÿ“– [API tutorials](https://help.shopify.com/en/api/tutorials). - ๐Ÿ“– [REST admin API](https://help.shopify.com/en/api/reference). - ๐Ÿ“– [GraphQL admin API](https://help.shopify.com/en/api/graphql-admin-api). - ๐Ÿ“– [Storefront API](https://help.shopify.com/en/api/storefront-api). - ๐Ÿ“– [Embedded apps](https://help.shopify.com/en/api/embedded-apps). - ๐Ÿ“– [Tools](https://help.shopify.com/en/api/tools). ### Development tools - ๐Ÿ“– [Shopify App CLI](https://github.com/Shopify/shopify-app-cli/). ([see demo here](https://www.youtube.com/watch?v=gwp2rL_fdmY)) - ๐Ÿ“– [Shopify Developer Tools](https://help.shopify.com/en/api/tools/developer-tools). ### Theme building - ๐Ÿ–ผ [Shopify Polaris](https://polaris.shopify.com/). - ๐Ÿ–ผย [Shopify Theme Integration Tests](https://github.com/pixelcabin/shopify_theme_integration_tests). - ๐Ÿ–ผ [Shopify Liquid cheat sheet](https://www.shopify.com/partners/shopify-cheat-sheet). ### Kit skills - ๐Ÿค– [Conversational experiences](https://polaris.shopify.com/patterns-and-guides/conversational-experiences).

Developer Tools Email Marketing
129 Github Stars