/lncli-web

Light-weight web client for the lnd daemon written in NodeJS / Angular.

Primary LanguageJavaScriptGNU Affero General Public License v3.0AGPL-3.0

Lnd Web Client

Installation

Requirements

Procedure

Fetch sources from the Lnd Web Client git repository:

git clone https://github.com/mably/lncli-web.git

Move into the newly created directory:

cd lncli-web

Fetch and install all the backend server dependencies by running:

npm install

Fetch and install all the front end dependencies by running:

"./node_modules/.bin/bower" install --allow-root

Execution

Start the back-end server:

node server

Available command-line arguments:

node server --help

  Usage: server [options]

  Options:

    -h, --help                 output usage information
    -V, --version              output the version number
    -s, --serverport [port]    web server listening port (defaults to 8280)
    -l, --lndhost [host:port]  RPC lnd host (defaults to localhost:10009)
    -t, --usetls [path]        path to a directory containing key.pem and cert.pem files
    -u, --user [login]         basic authentication login
    -p, --pwd [password]       basic authentication password
    -r, --limituser [login]    basic authentication login for readonly account
    -w, --limitpwd [password]  basic authentication password for readonly account
    -f, --logfile [file path]  path to file where to store the application logs
    -e, --loglevel [level]     level of logs to display (debug, info, warn, error)

Open your browser at the following address: http://localhost:8280

Enjoy!

Screenshots

Check here for the mandatory screenshots: http://imgur.com/a/LgWcs

Enabling https for remote access

You need to have a key.pem (private key) file and a cert.pem (certificate) file available in your path (check the --usetls command-line option).

On Linux you can create the above files using a self-signed certificate by executing the following command:

openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 365

You might need to run this extra command to remove the password protection:

openssl rsa -in key.pem -out newkey.pem && mv newkey.pem key.pem

And the you need to add the --usetls command-line option to point to the directory containing your two pem files.

Example command starting a password protected Lnd Web Client with readonly account enabled, running on port 443, and using https with corresponding pem files located in the app directory:

node server -s 443 --usetls . --user manager --pwd 33H966wG --limituser lnd --limitpwd rocks

Hoping that helps.