@@ -280,7 +280,7 @@ <h2>📘 Quick Usage Examples</h2>
280280 < h4 > 🔍 Search for user information</ h4 >
281281 < pre > < code class ="language-js ">
282282 // Importing the main module
283- import { GitHubUserService } from 'github-api- framework';
283+ import { GitHubUserService } from 'github-framework';
284284
285285 // Creating instance and fetching user data
286286 const userService = new GitHubUserService();
@@ -294,7 +294,7 @@ <h4>🔍 Search for user information</h4>
294294 < div class ="exemplo-codigo ">
295295 < h4 > 📦 List user repositories</ h4 >
296296 < pre > < code class ="language-js ">
297- import { GitHubRepoService } from 'github-api- framework';
297+ import { GitHubRepoService } from 'github-framework';
298298
299299 const repoService = new GitHubRepoService();
300300 repoService.getUserRepos('octocat').then(repos => {
@@ -306,7 +306,7 @@ <h4>📦 List user repositories</h4>
306306 < div class ="exemplo-codigo ">
307307 < h4 > 📊 View used languages with graph</ h4 >
308308 < pre > < code class ="language-js ">
309- import { GitHubLanguageService } from 'github-api- framework';
309+ import { GitHubLanguageService } from 'github-framework';
310310 import Chart from 'chart.js/auto';
311311
312312 const langService = new GitHubLanguageService();
@@ -570,7 +570,7 @@ <h2>📡 Connecting to GitHub API</h2>
570570
571571 < h4 > ✅ Instantiating with authentication (recommended)</ h4 >
572572 < pre > < code class ="js ">
573- import { GitHubExplorer } from 'github-api- framework';
573+ import { GitHubExplorer } from 'github-framework';
574574
575575 const explorer = new GitHubExplorer({
576576 token: "ghp_yourTokenHere"
@@ -625,7 +625,7 @@ <h4>📦 Main available modules:</h4>
625625 </ ul >
626626
627627 < h4 > 🛠️ Example of modular usage</ h4 >
628- < pre > < code class ="js "> import { GitHubExplorer, GitHubUser, GitHubRepo } from 'github-api- framework';
628+ < pre > < code class ="js "> import { GitHubExplorer, GitHubUser, GitHubRepo } from 'github-framework';
629629
630630 const explorer = new GitHubExplorer({ token: "ghp_yourTokenHere" });
631631
@@ -652,7 +652,7 @@ <h4>🏗️ Internal Architecture (Layers)</h4>
652652 </ ul >
653653
654654 < h4 > 💡 Example of custom extension:</ h4 >
655- < pre > < code class ="js "> import { GitHubService } from 'github-api- framework';
655+ < pre > < code class ="js "> import { GitHubService } from 'github-framework';
656656
657657 class GitHubPinnedRepos extends GitHubService {
658658 async getPinnedRepos(username) {
@@ -690,7 +690,7 @@ <h4>📌 Example 1 — Most used languages by a user (Chart.js)</h4>
690690
691691 < pre > < code class ="html "> <canvas id="langChart" width="400" height="400"></canvas></ code > </ pre >
692692
693- < pre > < code class ="js "> import { GitHubExplorer, GitHubLang } from 'github-api- framework';
693+ < pre > < code class ="js "> import { GitHubExplorer, GitHubLang } from 'github-framework';
694694 import Chart from 'chart.js/auto';
695695
696696 const explorer = new GitHubExplorer({ token: 'ghp_seuTokenAqui' });
@@ -850,7 +850,7 @@ <h4>📦 Install Chart.js</h4>
850850 < pre > < code class ="bash "> npm install chart.js</ code > </ pre >
851851
852852 < h4 > 📈 Example: Visualizing languages of a repository</ h4 >
853- < pre > < code class ="js "> import { GitHubExplorer, GitHubRepo } from 'github-api- framework';
853+ < pre > < code class ="js "> import { GitHubExplorer, GitHubRepo } from 'github-framework';
854854 import Chart from 'chart.js/auto';
855855
856856 const explorer = new GitHubExplorer();
0 commit comments