VSCode Coding Tracker extension server side program.
Links:
Extension side Github repo
VSCode extensions marketplaceGive me coffee for coding better via Paypal
Your support encourage me to make my vscode extensions better and better! (and add more and more features)
- Support exporting/downloading report data as CSV format.
- Support adding association for projects (So you can merge report from different projects).
- Fix incorrect 24 hours report.
- Fix some wrong i18n on the UI.
- More compatible with old browsers and mobile browsers.
- Make sure You have installed
Node.js
development environment includednpm
- Install this server program
- Way 1 : Clone this repository and execute
npm i
in the folder where this README.md located - Way 2 : Using
npm i vscode-coding-tracker-server
anywhere you want to install to
- Way 1 : Clone this repository and execute
- Execute
npm start
ornode app
to launch this server program.- You could give it more options like
npm start -- ${MORE_SERVER_OPTIONS}
if you start it by usingnpm start
- You could give it more options like
- Open URL
http://domain:port/report?token=${YOUR_TOKEN}
to get coding report- In default, URL in local is
http://127.0.0.1:10345/report?token=${YOUR_TOKEN}
- If you using
--public-report
option to launch server, you could ignore the query parametertoken
in above URL
- In default, URL in local is
More server option things:
--local
: It means server bind address on127.0.0.1
when server listening. (Other computer could not upload data and visit report page in this mode)
--random-token
: It means server will using a 8 length random string as API/upload token even if you giving a token by-t
option
--public-report
: It means anyone could visit report page without tokenmore options information you could find by using command
node app --help
more version information: CHANGELOG.md
It is necessary to read CONTRIBUTING.md before contributing codes/translations or building codes
Goto chapter Editing, Building, Running and Testing in CONTRIBUTING.md.
redirect to FILES.md