A browser and wallet for LBRY, the decentralized, user-controlled content marketplace.
Find a file
Alex Liebowitz e453679729 Lowercase and remove special chars from names on Publish page
Also edited the text that appears next to the "name" box so
the user always gets to sees the actual name that will be claimed.
2016-09-01 03:30:12 -04:00
.travis Build the frontend assets on travis and deploy to S3 2016-07-22 10:59:39 -05:00
dist Add default thumbnails everywhere 2016-08-26 08:03:08 -04:00
js Lowercase and remove special chars from names on Publish page 2016-09-01 03:30:12 -04:00
scss Merge pull request #46 from lbryio/tx_log 2016-08-30 05:15:49 -04:00
.gitignore Add MediaElement.js to main repo (not just dist.zip) 2016-07-20 16:20:25 -04:00
.travis.yml simplify setup process 2016-08-17 15:15:09 -04:00
dist.zip Clean up and Package 2016-08-02 08:35:18 -05:00
LICENSE.md simplify setup process 2016-08-17 15:15:09 -04:00
package.json simplify setup process 2016-08-17 15:15:09 -04: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

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