A browser and wallet for LBRY, the decentralized, user-controlled content marketplace.
Go to file
2016-12-09 02:12:47 -05:00
.travis Build the frontend assets on travis and deploy to S3 2016-07-22 10:59:39 -05:00
dist Convert to ES6 modules 2016-12-06 14:28:10 -05:00
js Show: fix imports 2016-12-09 02:10:59 -05:00
scss Layout tweak to "Download Succeeded" Modal 2016-12-02 03:21:35 -05:00
.babelrc Convert to ES6 modules 2016-12-06 14:28:10 -05:00
.bumpversion.cfg Bump version: 0.1.0 → 0.1.1 2016-11-02 11:38:05 -05:00
.eslintrc.js Convert to ES6 modules 2016-12-06 14:28:10 -05:00
.gitignore Add MediaElement.js to main repo (not just dist.zip) 2016-07-20 16:20:25 -04:00
.travis.yml Revert "only deploy on a tag" 2016-11-02 13:45:38 -05:00
LICENSE.md simplify setup process 2016-08-17 15:15:09 -04:00
package.json Convert to ES6 modules 2016-12-06 14:28:10 -05:00
README.md simplify setup process 2016-08-17 15:15:09 -04:00
watch.sh node-sass is a bit dumb with --watch 2016-08-17 16:27:53 -04:00
webpack.config.js Small tweak so that hot-reloading works. 2016-12-06 14:28:10 -05:00

LBRY Web User Interface

This is the frontend for LBRY's in-browser application, that is automatically installed when a user installs LBRY.

Development Setup

These steps will get you to change-reload-see:

  • Install LBRY
  • Install node and npm (this gist may be useful)
  • Run ./watch.sh (this will npm install dependencies)
  • Run lbrynet-daemon --ui=/full/path/to/dist/
  • Changes made in js and sass will be auto compiled to dist
  • lbrynet-daemon --branch=branchname can be used to test remote branches
  • lbry.call('configure_ui', {path: '/path/to/ui'}) can be used in JS console on web ui to switch ui path
  • Occasionally refreshing the cache may be necessary for changes to show up in browser

Common Issues

  1. Error: Couldn't find preset "es2015" relative to directory "js"

Fix with:

npm install babel-preset-es2015 --save
npm install babel-preset-react --save