├── LICENSE
├── README.md
├── index.html
├── js
├── followers.js
├── following.js
├── gists.js
└── repos.js
├── main.js
└── screenshots
├── followers.jpeg
├── following.jpeg
├── gists.jpeg
└── repositories.jpeg
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2023 Sakhawat Hossain
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # GitGittu
2 |
3 | [](https://opensource.org/licenses/MIT)
4 |
5 | GitGittu is a simple tool that allows users to view their GitHub repositories, gists, followers, and following. The tool is built with JavaScript and utilizes the GitHub REST API.
6 |
7 | ## Usage
8 |
9 | To use the tool, simply visit the [GitGittu website](https://shrudra.github.io/gitgittu/) and enter your GitHub username in the input field. Then click on the button for the information you want to view: Repositories, Gists, Followers, or Following. The information will be displayed in a table format below the button.
10 |
11 | ## Screenshots
12 |
13 | ### Repositories
14 | 
15 |
16 | ### Gists
17 | 
18 |
19 | ### Followers
20 | 
21 |
22 | ### Following
23 | 
24 |
25 | ## Star ⭐ History
26 |
27 | 
28 |
29 | ## Development
30 |
31 | If you want to make modifications to GitGittu, you can clone the GitHub repository and make changes locally. Here are the steps to do so:
32 |
33 | 1. Clone the repository:
34 |
35 | ```
36 | git clone https://github.com/shrudra/gitgittu.git
37 | ```
38 |
39 | 2. Open the index.html file in your browser to view the current version of the tool.
40 |
41 | 3. Make any changes you want to the JavaScript code in the main.js file.
42 |
43 | 4. Test your changes by refreshing the index.html file in your browser.
44 |
45 | 5. Once you're satisfied with your changes, commit and push them to the GitHub repository:
46 |
47 | ```
48 | git add .
49 | git commit -m "Description of changes made"
50 | git push
51 | ```
52 |
53 | ## Contribute
54 |
55 | If you find any bugs or want to contribute to the project, feel free to submit an issue or pull request.
56 |
57 | # Donate
58 | If you find value in what I'm creating, a book donation would be a great choice.
59 |
60 |
61 |
62 | ## License
63 | My Tool is licensed under the MIT License. See LICENSE for more information.
64 |
65 | ## Contact
66 |
67 | If you have any questions or want to reach out, you can email me at [sakhwt.hssain@gmail.com](mailto:sakhwt.hssain@gmail.com).
68 |
69 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |