GithubHelp home page GithubHelp logo

ryanaarongreen / shopify-modern Goto Github PK

View Code? Open in Web Editor NEW

This project forked from dmccuskey/shopify-modern

0.0 2.0 0.0 138 KB

A modern template for developing Shopify-themes using Vuejs

License: MIT License

Vue 2.24% JavaScript 21.12% Liquid 76.65%

shopify-modern's Introduction

shopify-modern

This proof-of-concept shows a method of creating an ecommerce experience for Shopify by using modern front-end development tools and techniques, while still leveraging some of the beneficial features of the Shopify system & infrastructure.

Overview

Shopify's Wordpress-like structure is as much fun to work with as Wordpress โ€“ "let's develop like it's 1999!" :-) These days we know that it can be done better.

This project shows a working, hybrid Shopify-template which still runs on the Shopify infrastructure. However, because of a very clear separation between Shopify and the front-end, we can develop the web experience using modern tools.

While this project template is NOT full-SPA, it helps by giving a roadmap for those wanting to transform an existing Shopify template into one which is both modern and full-SPA. The project already has features to help with that goal in mind.

Benefits

Here are some of the benefits of this framework / concept:

Framework

  • Modern development with Vuejs
  • Internationalization (i18n)
  • Special tags & filters (like in Shopify Liquid)
  • Clear separation between Shopify Liquid & Vuejs code & markup
  • Rendered page components determined using Vuejs routes paired with Shopify URLs.
  • Avoid any potential issues with Shopify 64k page-limit
  • Search-bot friendly (soon)

Shopify

  • Hosting / Scalability handled by Shopify
  • SEO friendly
  • Server-Side-Augmentation (ie, lightweight Server Side Rendering)
  • Settings / Config files still useful

Future

  • Clear path to full-SPA
  • Ability to do local development !

How it works

One of the main benefits is that the framework can serialize many of the Shopify data-objects. This serialized data can either be embedded in the primary HTML page or loaded later using HTTP requests. The corresponding front-end Vuejs objects can initialize themselves with either method.

Though this doesn't qualify as full server-side rendering, having embedded data speeds up the initial page draw since the information will not need to be loaded by subsequent AJAX requests.

In the future, there will be more control over which data is embedded and which is lazy-loaded after the first page render.

Steps to Template-Freedom

If you want to start integrating the ideas into an existing project, your main goal is to move almost all of the site information out of the Liquid templates. Two important steps for that would be:

  1. insert app anchors into HTML

    Depending on how far along you are with the transition, you can use one or many anchors which will be under control of your framework (eg, Vuejs).

    	<!-- a single anchor for the entire app (like in this project) -->
    	<div id="vueapp"></div>
    
    	<!-- one of many anchors for individual components -->
    	<div id="calendar-widget"></div>
    	<div id="product-picker-widget"></div>
    
  2. integrate a normal build process

    use Webpack or Gulp to generate a typical build file, eg dist/build.js.

    Do NOT include any of your front-end code in the Fluid templates. All of it should be inside of build.js, and that file being sourced from theme.liquid.

Setup

(rough notes!)

  1. Install Shopify Themekit
  2. Rename config-sample.yml to config.yml. Add your password, theme id, store name.
  3. Run webpack to re-pack code upon changes
  4. Run themekit to upload webpack output to Shopify

Libraries

This project uses these libraries:

Inspiration

Inspiration for this project came from the following:

References

shopify-modern's People

Contributors

dmccuskey avatar

Watchers

James Cloos avatar Ryan Green avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.