2.0.2-alpha.5 • Published 2 years ago

@evershop/core v2.0.2-alpha.5

Weekly downloads
-
License
GNU GENERAL PUBLI...
Repository
github
Last release
2 years ago

GraphQL Based and Dynamic Layout

import React from 'react';
import Products from './components/Products';

export default function NewArrival({ products }) {
    return <div>
      <h2>New Arrival</h2>
      <Products products={products}/>
    </div>
}

export const layout = {
  areaId: 'content',
  sortOrder: 5
}

export const query = `
  query NewArrival {
    products {
      name
      price
      image {
        alt
        url
      }
      url
    }
}
`

Demo

Explore our demo store.

Quick Start

You can get started with EverShop in minutes by running the following command:

npx create-evershop-app my-app --playAround

Full installation guide can be found in the documentation.

Check out EverShop docs for the development documentation.

Features

  • Catalog management(with product attribute, custom option and variants)
  • Order management
  • Customer management
  • Coupon management
  • Tax
  • Online payment (For now using Stripe)
  • Basic CMS pages management
  • Easy to customize by developing extensions

Support

Ask a question about EverShop

You can ask questions, and participate in discussions about EverShop-related topics in the EverShop Discord channel.

Create a bug report

If you see an error message or run into an issue, please create bug report. This effort is valued and it will help all EverShop users.

Submit a feature request

If you have an idea, or you're missing a capability that would make development easier and more robust, please Submit feature request.

If a similar feature request already exists, don't forget to leave a "+1". If you add some more information such as your thoughts and vision about the feature, your comments will be embraced warmly :)

Contributing

EverShop is an open-source project. We are committed to a fully transparent development process and appreciate highly any contributions. Whether you are helping us fix bugs, proposing new features, improving our documentation or spreading the word - we would love to have you as part of the EverShop community.

Please refer to our Contribution Guidelines and Code of Conduct.

License

GPL-3.0 License