https://github.com/dimitrisniras/web-recorder-server
Web Recorder Server
https://github.com/dimitrisniras/web-recorder-server
Last synced: 5 months ago
JSON representation
Web Recorder Server
- Host: GitHub
- URL: https://github.com/dimitrisniras/web-recorder-server
- Owner: dimitrisniras
- License: mit
- Created: 2017-08-26T14:56:01.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-05-07T16:52:20.000Z (about 8 years ago)
- Last Synced: 2025-04-05T01:42:25.019Z (about 1 year ago)
- Language: HTML
- Homepage: http://snf-750380.vm.okeanos.grnet.gr
- Size: 4.68 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Web Recorder Server
Web Recorder is an automated website testing and monitoring service that checks for problems with your website or application. It carries out operations in a browser, the same way a user would, to ensure that everything is working properly. More information about Web Recorder functionality and it's API can be found [here][documentation].
Web Recorder's Server consists of two parts: Frontend for the visual representation of tests and Backend for the automation tests logic. You can access the Web Recorder's Application from [here][website] and the API from http://snf-750380.vm.okeanos.grnet.gr:4000.
[documentation]: http://snf-750380.vm.okeanos.grnet.gr/documentation
[website]: http://snf-750380.vm.okeanos.grnet.gr
[api]: http://snf-750380.vm.okeanos.grnet.gr:4000
## Manual Installation
If you want to install locally to your PC either the Web Application or the app's backend you have to install Node via npm:
```
$ curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
$ sudo apt-get install -y nodejs
```
To compile and install native addons from npm you also need to install build tools:
```
$ sudo apt-get install -y build-essential
```
More information about frontend and backend installation you can find in the sub-folders.