Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hamidbyte/github-repository-lines-of-code-calculator
Simplify GitHub repository analysis with our Lines of Code Calculator. Quickly input the owner and repository name to obtain total lines of code, providing valuable insights for developers and project managers. Effortlessly streamline codebase assessments for enhanced efficiency.
https://github.com/hamidbyte/github-repository-lines-of-code-calculator
axios dark-mode dark-theme frontend github-api light-dark-mode light-dark-theme lines-of-code node nodejs vite volar vue vue-router vue-router4 vue3 vuejs vuejs3 vuex
Last synced: 6 days ago
JSON representation
Simplify GitHub repository analysis with our Lines of Code Calculator. Quickly input the owner and repository name to obtain total lines of code, providing valuable insights for developers and project managers. Effortlessly streamline codebase assessments for enhanced efficiency.
- Host: GitHub
- URL: https://github.com/hamidbyte/github-repository-lines-of-code-calculator
- Owner: HamidByte
- Created: 2024-01-09T12:53:29.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-01-31T14:44:45.000Z (10 months ago)
- Last Synced: 2024-02-01T13:58:24.796Z (10 months ago)
- Topics: axios, dark-mode, dark-theme, frontend, github-api, light-dark-mode, light-dark-theme, lines-of-code, node, nodejs, vite, volar, vue, vue-router, vue-router4, vue3, vuejs, vuejs3, vuex
- Language: Vue
- Homepage:
- Size: 84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GitHub Repository Lines of Code Calculator
Simplify GitHub repository analysis with our Lines of Code Calculator. Quickly input the owner and repository name to obtain total lines of code, providing valuable insights for developers and project managers. Effortlessly streamline codebase assessments for enhanced efficiency.
## Demo
You can check out a live demo [here](https://ghloc.netlify.app/).
## Prerequisites
Make sure you have the following software installed on your machine:
- [Node.js](https://nodejs.org/) (version 14 or higher)
- [npm](https://www.npmjs.com/) (comes with Node.js)
- [Git](https://git-scm.com/) (optional but recommended)## Recommended IDE Setup
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
## Getting Started
1. **Clone the Repository:**
```sh
git clone https://github.com/HamidByte/GitHub-Repository-Lines-of-Code-Calculator.git
```2. **Navigate to the Project Directory:**
```sh
cd GitHub-Repository-Lines-of-Code-Calculator
```3. **Configure Environment Variables:**
Create a .env file in the root of the project and set the following variables:
```env
VITE_BASE_URL=http://127.0.0.1:5173
VITE_GITHUB_ACCESS_TOKEN=your-github-access-token
```## Project Setup
1. **Install Dependencies:**
```sh
npm install
```2. **Run the Application:**
- Compile and Hot-Reload for Development:
```sh
npm run dev
```- Compile and Minify for Production:
```sh
npm run build
```- Lint with [ESLint](https://eslint.org/):
```sh
npm run lint
```## Customize configuration
See [Vite Configuration Reference](https://vitejs.dev/config/).