Merge branch 'master' of github.com:billchurch/WebSSH2

This commit is contained in:
Bill Church 2019-10-01 09:29:55 -04:00
commit 341e61eb01

View file

@ -20,7 +20,7 @@ Just keep in mind that there is no intention to ensure compatability with Node <
# Instructions # Instructions
To install: To install:
1. Clone to a location somewhere and `npm install --production`. If you want to develop and rebuild javascript and other files utilize `npm install` instead. 1. Clone to a location somewhere and then `cd app` and `npm install --production`. If you want to develop and rebuild javascript and other files utilize `npm install` instead.
2. If desired, edit config.json to change the listener to your liking. There are also some default options which may be definied for a few of the variables. 2. If desired, edit config.json to change the listener to your liking. There are also some default options which may be definied for a few of the variables.
@ -222,7 +222,7 @@ Clicking `Start logging` on the status bar will log all data to the client. A `D
# Example: # Example:
http://localhost:2222/ssh/host/192.168.1.1?port=2244&header=My%20Header&color=red http://localhost:2222/ssh/host/192.168.1.1?port=2244&header=My%20Header&headerBackground=red
# Tips # Tips
* If you want to add custom JavaScript to the browser client you can either modify `./src/client.html` and add a **<script>** element, modify `./src/index.js` directly, or check out `webpack.*.js` and add your custom javascript file to a task there (best option). * If you want to add custom JavaScript to the browser client you can either modify `./src/client.html` and add a **<script>** element, modify `./src/index.js` directly, or check out `webpack.*.js` and add your custom javascript file to a task there (best option).