Remote logging helps to save all console.log in a distant server, to help to debug inapp webview or any other context.
npm i
npm start
If any change on Client.js
generate the minified version with
npm run minify
run make run
-
Localhost Add
<script src='http://localhost:3337/client.js'></script>
to you webpage then go to http://localhost:3337/log/ to display your log file. Log are send every 5 seconds to server if have any log -
YOUR SERVER Add
<script src='{YOUR_SERVER}/client.min.js'></script>
to you webpage then go to{YOUR_SERVER}/log/
to display your log file. Log are send every 5 seconds to server if have any log -
Hosted version with qovery.com (each time the service is restarted (new version) log will be deleted!) Add
<script src='https://remote-logging.rumesh.tech/client.min.js'></script>
to you webpage then go tohttps://remote-logging.rumesh.tech/log/
to display your log file. Log are send every 5 seconds to server if have any log