https://github.com/barzik/revu-web-viewer
Web Viewer for reVu IntelliJ IDEA plugin
https://github.com/barzik/revu-web-viewer
Last synced: 9 months ago
JSON representation
Web Viewer for reVu IntelliJ IDEA plugin
- Host: GitHub
- URL: https://github.com/barzik/revu-web-viewer
- Owner: barzik
- License: apache-2.0
- Created: 2015-01-10T18:06:54.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-01-30T20:09:19.000Z (over 11 years ago)
- Last Synced: 2023-04-08T00:38:48.040Z (about 3 years ago)
- Language: JavaScript
- Size: 172 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# reVu web viewer
reVu is popular intelliJ Plugin for coding review (https://github.com/syllant/idea-plugin-revu) This Node.JS module is
for displaying important statistics for all of designated reVu XML files. The statistics is very useful
for monitors and quick overviews without any need to open the IDE.
## How to use
Quite self explanatory
var module = require('./revuViewer/index.js')({
"port": 3000,
"title" : 'Title for the monitor'
"refresh": "10",
"path" : "path/to/xml/files"
});
After initiating it (node app.js), you may go to IP:port or localhost:port.
There some demo reVu XML file in the demo directory.
## Demo
Here it is: [Demo on Heroku](https://infinite-shore-1165.herokuapp.com/)
## How to test
Testing as being made with Mocha. just "make test" from root directory and that's it!