kammeliya
v1.0.7
Published
Plugin for some one who lazy enough to publish your Portfolio works but you works really hard behind the scene
Downloads
3
Readme
// Initialize Kammeliya const kammeliya = new Kammeliya();
// Fetch and display portfolio data kammeliya.fetchPortfolio().then(portfolio => { console.log(portfolio); }).catch(err => { console.error('Error fetching portfolio:', err); }); 🔧 APIfetchPortfolio()Fetches portfolio data from your GitHub repositories.Returns: Promise<Array> - A promise that resolves to an array of portfolio items.🛠️ ConfigurationYou can customize Kammeliya to fit your needs by passing a configuration object when initializing:javascriptCopy codeconst kammeliya = new Kammeliya({ githubUsername: 'your-github-username', includeRepos: ['repo1', 'repo2'], // Optional: specify repos to include excludeRepos: ['repo3'], // Optional: specify repos to exclude sortBy: 'stars', // Optional: sort portfolio items by 'stars', 'updated', etc. }); 📚 ExamplesHere are some examples to demonstrate how you can use Kammeliya:Basic UsageAdvanced ConfigurationCustom Portfolio Template📖 DocumentationFor detailed documentation, please refer to the official documentation.📝 LicenseThis project is licensed under the MIT License - see the LICENSE file for details.🤝 ContributingWe welcome contributions to Kammeliya! Please check out our contributing guidelines for more information.🙏 AcknowledgementsA special thanks to everyone who contributed to this project. Your hard work and dedication are greatly appreciated!