Skip to main content

eCommerce

oiron-starter
eCommerce JavaScript
Oiron Starter – React JS Landing Page Template Read documentation here http://ilhammeidi.github.io/oiron-docs Template Feature Modern Technologies. Built with one of most popular javascript library React.JS, Material UI and Next.JS. More Variant Components.
boundless-nextjs-ecommerce-template
eCommerce TypeScript
Next.js E-Commerce template Ready to use Next.js (TypeScript) starter kit for high-performance e-commerce websites 🔥. Free 👍. Ready to use 😎. Just clone & deploy! 🤘 Online Demo ⚡️
Store-ecommerce
eCommerce TypeScript
YourCoffeeShop-ecommerce This is a full stack serverless ecommerce site built for a fictional coffee company that require a new online presence to be able to sell their coffee related products such as coffee beans and cups/mugs.
ecommerce
eCommerce CSS
Host link: https://ecommerce-purified.herokuapp.com/home/homepage/ Unfortunately, i wasnt been able to host media files on aws cause i cant get a confirmation code on my phone:( Home page structure: Header consists of 2 sections which is a top section and a bottom section.
js-buy-sdk
eCommerce JavaScript
Shopify JavaScript Buy SDK Note: For help with migrating from v0 of JS Buy SDK to v1 check out the Migration Guide. The JS Buy SDK is a lightweight library that allows you to build ecommerce into
africommerce-saas
eCommerce JavaScript
Africommerce (Repo: Africommerce) Report Bug · Request Feature Introduction AfriCommerce is a Software As Service E-commerce platform that allows all signed up users in Africa to own their own customized store and connects buyers to prospective sellers for free.
CSE499-Ecommerce
eCommerce JavaScript
Project for CSE499A, CSE499B courses in North South University. Web Based E-Commerce Project using the MERN Stack For Selling Agricultural Produce. Project Road Map Back-End Project Setup MongoDB Cloud Database Setup Building the RESTful API User Signup Validation User SignIn Using JWT Auth/Admin Middleware Create Categories Products – CRUD Products Sort By Arrival, Sold Amount Search Products Front-End Project Setup Routing Creating Menu/Navigation SignIn/SignUp Admin Route, Private/Protected Route User/Admin Dashboard Create Category Create Product Sort Products By Sell/Arrival Time Shop Page With Filter Products By Categories / Price Filter Products Based On Categories Using CheckBox Filter Products Based On Price Using Radio Buttons Search Products With Options Of Categories Sinlge Product View Single Product View With Related Products SideBar Cart Page Add Prouducts To Cart Product Quantity Increment / Decrement Remove Product From Cart Show Details Of Products Payment Inetgration Checkout Back-End / Front-End API – Processing Payment Delivery Address Finalize Payment Send Order Details To Back-End Saving Orders Sold Products Count Update After Selling View All Orders Order Status Update (Processing / Delivered) Profile Update Product Update Deployment
meanstore
eCommerce JavaScript
MEANStore – MeanMart An example ecommerce / Retail software solution demonstrating the power and flexibility of MongoDB. Installation via Vagrant MEANStore leverages vagrant to deliver a fully functional virtual environment with MEANStore / MEANMart running.
exercise-product-landing-page-plain-css
eCommerce CSS
Build a Product Landing Page with Plain HTML/CSS Doing layouts is one of the most difficult things in CSS/HTML, but it has never been a good technology for that purpose, which is weird and sad because it’s its main focus.
magento_react_native_graphql
eCommerce TypeScript
React Native eCommerce App for Magento GraphQL api E-Commerce App written in React Native which consumes Magento 2 GraphQL api to display catalog, products, add products to cart 📷 Screenshots (Dark mode) 🚀 Getting Started: Clone the repository, by tying this command in terminal
ecommerce_showzim
eCommerce CSS
README Este projeto esta sendo desenvolvido em live no meu canal https://twitch.tv/progshowzim Configurando o sistema Para configurar o sistema no seu computador você precisa do ruby, node e yarn configurado no seu computador.
accessible-ecommerce-demo
eCommerce JavaScript
accessible-ecommerce-demo A truly accessible demo eCommerce website brought to you by Publicis.Sapient. This project is currently in alpha status. This means that anything could change at any time. Additionally, it means that your feedback will have an impact on how the project evolves, so please feel free to open issues.
react-pwa-reference-storefront
eCommerce TypeScript
REACT PWA Reference Storefront Overview 🚀 The REACT PWA Reference Storefront is a flexible e-commerce website built on Elastic Path’s RESTful e-commerce API, Cortex API. Through the Cortex API, the storefront uses the e-commerce capabilities provided by Elastic Path Commerce and gets data in a RESTful manner.
react-storefront
eCommerce TypeScript
Next.js Storefront Next.js Storefront: Your open-source frontend starter pack for building performant e-commerce experiences with Saleor. Saleor Checkout: Extensible Next.js checkout application and payment integrations powered by Saleor API.
ecommerce-modern
eCommerce CSS
About Laravel Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
minimal-ecommerce
eCommerce TypeScript
Minimal Ecommerce With GraphQL A simple ecommerce site to showcase the power of graphql and django In the project directory, you can run: npm start Runs the app in the development mode.
ecommerce-react-native
eCommerce TypeScript
Boilerplate for an Advanced GraphQL Server w/ TypeScript 🚀 Bootstrap your GraphQL server within seconds Advanced starter kit for a flexible GraphQL server for TypeScript – based on best practices from the GraphQL community.
react-ecommerce-hook
eCommerce TypeScript
react-ecommerce-hook A basic shopping cart react hook, it uses localStorage to persist data Install yarn add react-ecommerce-hook Examples Product import React from 'react'; import { useCart } from 'react-ecommerce-hook'; export const Product = ({ id }) => { const { addToCart, removeFromCart, increaseQuantity, decreaseQuantity } = useCart(); return ( <div> <h1>Awesome Product</h1> {/* if item is unique, its maximum quantity is 1 */} <button onClick={() => addToCart({ id, isUnique: true })}> Add To Cart Unique Product </button> <button onClick={() => addToCart({ id })}> Add To Cart </button> <button onClick={() => removeFromCart({ id })}> Remove From Cart </button> <button onClick={() => increaseQuantity({ id })}> Increase Quantity </button> <button onClick={() => decreaseQuantity({ id })}> Decrease Quantity </button> </div> ); } Cart import React from 'react'; import { useCart } from 'react-ecommerce-hook'; export const Cart = () => { const { state: { addedIds, quantityById, }, } = useCart(); return ( <div> {addedIds.
meteor-shop
eCommerce JavaScript
An eCommerce Storefront Using Meteor.js, Bootstrap, Knockout, Stripe, and Postgres I built this storefront a while back to test out some ideas and also to see where Meteor was at in terms of maturity etc.
cart-localstorage
eCommerce JavaScript
cart-localstorage Super simple JavaScript shopping cart library This micro library (2.2Kb) utilizes the browser’s localStorage to create a persistent shopping cart instance. Demo Cart demo Install: Use npm or yarn to add it to your ES6 project: