Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@evershop/evershop

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@evershop/evershop

The React Ecommerce platform. Built with React and MySQL. Open-source and free. Fast and customizable.

  • 1.0.0-beta.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.3K
increased by4.53%
Maintainers
1
Weekly downloads
 
Created
Source

      

Lightweight, modular, extendable React ecommerce platform.

Documentation

Github Action Discord License

Component-Level Data Fetching (Server Side Props)

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

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

// The GraphQL query result will be passed to the page component as props
export const query = `
  query NewArrival {
    products {
      name
      price
      image {
        alt
        url
      }
      url
    }
}
`

Demo

Explore our demo store.

evershop-store-demo

evershop-backend-demo

Demo user:

Email: demo@gmail.com
Password: 123456

Quick Start

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

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

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

If you like my work, feel free to:

  • ⭐ this repository. It is a big motivation for me to continue working on this project.
  • Tweet about EverShop

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

Keywords

FAQs

Package last updated on 24 Nov 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc