BazaarDog / bazaar-dog-stencil

an open-source progressive web app for the open-bazaar 2 protocol

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bazaar Dog Stencil

an open-source progressive web app for the open-bazaar 2 protocol

Live Version Here: https://app.bazaar.dog/

Stencil is a compiler for building fast web apps using Web Components.

Stencil combines the best concepts of the most popular frontend frameworks into a compile-time rather than run-time tool. Stencil takes TypeScript, JSX, a tiny virtual DOM layer, efficient one-way data binding, an asynchronous rendering pipeline (similar to React Fiber), and lazy-loading out of the box, and generates 100% standards-based Web Components that run in any browser supporting the Custom Elements v1 spec.

Stencil components are just Web Components, so they work in any major framework or with no framework at all. In many cases, Stencil can be used as a drop in replacement for traditional frontend frameworks given the capabilities now available in the browser, though using it as such is certainly not required.

Stencil also enables a number of key capabilities on top of Web Components, in particular Server Side Rendering (SSR) without the need to run a headless browser, pre-rendering, and objects-as-properties (instead of just strings).

Getting Started

To start a new project using Stencil, clone this repo to a new directory:

git clone git@github.com:ionic-team/stencil-starter.git my-app
cd my-app
git remote rm origin

and run:

npm install
npm start

To view the build, start an HTTP server inside of the /www directory.

To watch for file changes during develop, run:

npm run dev

To build the app for production, run:

npm run build

Road Map

lighthouse

  • make splash landing page.
  • remove unused css
  • reduce DOM elements

routing

  • test External Ref Routing issues
  • Link using providerQ param in search

storage

  • generation from seed phrase
  • set up IPFS
  • integrate ping tests

listing-page

  • page size
  • sortBy dropdown
  • results count
  • display param
  • fix search databinding

Infrastructure

  • mock gw
  • node gw
  • go gw

settings menu

  • gateways
  • searchProviders
  • defaultCurrency
  • get/set seed

features

  • saveSearch
  • favorites

About

an open-source progressive web app for the open-bazaar 2 protocol

License:MIT License


Languages

Language:JavaScript 93.2%Language:TypeScript 5.1%Language:CSS 1.1%Language:HTML 0.5%