guipas / echoppe

Simple ecommerce CMS based on Express (WIP)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool



Simple ecommerce CMS based on Express (WIP)

Installation

Echopppe is best used as a npm module :

npm install echoppe

Then, add it to your existing express app, or create a simple one like this :

const express = require('express')
const app = express();
const echopppe = require('echoppe');

app.use('/', echopppe({}));

app.listen(3000, () => console.log('Example app listening on port 3000!'))

Roadmap

  • Simple admin (using Vue.js)
  • Basic theme (using bootstrap)
  • Extendable theme
  • Basic email notification after a sell (using nodemailer)
  • Digital products
  • Plugin system
  • Simple onboarding after install
  • Direct buy link for all products

About

Simple ecommerce CMS based on Express (WIP)


Languages

Language:JavaScript 67.2%Language:HTML 19.2%Language:Vue 13.6%