Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/veghdev/write-vscodestat
write-vscodestat makes it easy to collect, filter and save vscode statistics to csv files.
https://github.com/veghdev/write-vscodestat
Last synced: about 2 months ago
JSON representation
write-vscodestat makes it easy to collect, filter and save vscode statistics to csv files.
- Host: GitHub
- URL: https://github.com/veghdev/write-vscodestat
- Owner: veghdev
- License: apache-2.0
- Created: 2022-05-05T13:46:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-06T09:45:48.000Z (over 2 years ago)
- Last Synced: 2024-10-12T15:10:31.037Z (3 months ago)
- Language: JavaScript
- Size: 384 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
[![npm version](https://badge.fury.io/js/write-vscodestat.svg)](https://badge.fury.io/js/write-vscodestat)
[![CI](https://github.com/veghdev/write-vscodestat/workflows/CI/badge.svg?branch=main)](https://github.com/veghdev/write-vscodestat/actions/workflows/ci.yml)# About The Project
write-vscodestat makes it easy to collect, filter and save vscode statistics to csv files.
# Installation
write-vscodestat requires `enum`, `csv-writer`, `csv-parser` and `vsce` packages.
```sh
npm install write-vscodestat
```# Usage
```js
const WriteVscodeStat = require("write-vscodestat").default;const targetExtension = "gitlens";
const csvDir = "stats/gitlens";
const writevscodestat = new WriteVscodeStat(targetExtension, csvDir);writevscodestat.datePeriod = "month";
writevscodestat.writeVscodeStat();
```Visit our [documentation](https://veghdev.github.io/write-vscodestat/) site for code reference or
our [wiki](https://github.com/veghdev/write-vscodestat/wiki/) site for a step-by-step tutorial into write-vscodestat.# Contributing
We welcome contributions to the project, visit our [contributing](https://github.com/veghdev/write-vscodestat/blob/main/CONTRIBUTING.md) guide for further info.
# Contact
Join our [discussions](https://github.com/veghdev/write-vscodestat/discussions) page if you have any questions or comments.
# License
Copyright © 2022.
Released under the [Apache 2.0 License](https://github.com/veghdev/write-vscodestat/blob/main/LICENSE).