Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

OpenBazaar 2.0 Desktop Client (talks to openbazaar-go server daemon)

License

Notifications You must be signed in to change notification settings

OpenBazaar/openbazaar-desktop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2a14665 · Nov 21, 2017
Jun 22, 2016
Sep 26, 2017
Aug 9, 2017
Aug 25, 2016
Oct 30, 2017
Oct 24, 2017
Nov 20, 2017
Nov 20, 2017
Nov 13, 2017
Oct 24, 2017
Aug 7, 2017
Jul 12, 2016
Jun 22, 2016
Aug 25, 2016
Aug 23, 2016
Dec 27, 2016
Sep 11, 2017
Sep 26, 2017
Jun 22, 2016
Sep 2, 2017
Aug 25, 2016
Nov 17, 2017
Oct 27, 2017
Nov 20, 2017
Nov 21, 2017
Dec 6, 2016

Repository files navigation

OpenBazaar Client v2

Build Status

Installation

  1. Clone the client repository into a directory of your choice:
  • git clone https://github.com/OpenBazaar/openbazaar-desktop
  1. Navigate into the new folder created in (1)
  • cd openbazaar-desktop
  1. npm install

Running

npm start will:

  • compile your Sass / re-compile on changes
  • run BrowserSync in watch mode so the app automatically refreshes on JS and HTML changes and dynamically injects any CSS / Sass changes**.
  • launch the Electron app

** At this time, the app will not refresh on main.js (or other root folder JS changes). This would require the entire Electron app to refresh and BrowserSync is only refreshing our browser.

Linting

npm run lint will run eslint on the JS files.

npm run lint:watch will run eslint on any JS file changes.

Testing

npm run test will execute test files in the test folder.

npm run test:watch will execute the tests on any file changes.