{"id":15692636,"url":"https://github.com/ultirequiem/fibonacci","last_synced_at":"2025-05-07T02:26:10.988Z","repository":{"id":39547800,"uuid":"409380710","full_name":"UltiRequiem/fibonacci","owner":"UltiRequiem","description":"🔢 Fibonacci Utilities","archived":false,"fork":false,"pushed_at":"2024-05-01T00:21:58.000Z","size":37,"stargazers_count":7,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-02T13:02:07.443Z","etag":null,"topics":["deno","denoland","fibonacci","fibonacci-sequence","javascript","javascript-module","node-module","nodejs","typescript"],"latest_commit_sha":null,"homepage":"https://ulti.js.org/fibonacci","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/UltiRequiem.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"license","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-09-22T23:03:52.000Z","updated_at":"2023-08-26T17:59:39.000Z","dependencies_parsed_at":"2023-02-18T16:32:14.887Z","dependency_job_id":"3c5c06e1-bc0d-4be4-8670-a2dfdc3623d2","html_url":"https://github.com/UltiRequiem/fibonacci","commit_stats":{"total_commits":49,"total_committers":2,"mean_commits":24.5,"dds":"0.16326530612244894","last_synced_commit":"6304d067d08c5ecff3a8f7124e0c38240c0845af"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UltiRequiem%2Ffibonacci","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UltiRequiem%2Ffibonacci/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UltiRequiem%2Ffibonacci/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UltiRequiem%2Ffibonacci/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/UltiRequiem","download_url":"https://codeload.github.com/UltiRequiem/fibonacci/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252800403,"owners_count":21806157,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["deno","denoland","fibonacci","fibonacci-sequence","javascript","javascript-module","node-module","nodejs","typescript"],"created_at":"2024-10-03T18:36:53.251Z","updated_at":"2025-05-07T02:26:10.961Z","avatar_url":"https://github.com/UltiRequiem.png","language":"TypeScript","funding_links":["https://patreon.com/UltiRequiem"],"categories":[],"sub_categories":[],"readme":"# Fibonacci\n\n[![Code Coverage](https://codecov.io/gh/ultirequiem/fibonacci/branch/main/graph/badge.svg)](https://codecov.io/gh/ultirequiem/fibonacci)\n[![Deno Docs](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/fibonacci/mod.ts)\n\nCompute the\n[Fibonacci Succession](https://en.wikipedia.org/wiki/Fibonacci_number) and NTH\nFibonacci Number.\n\n## Usage\n\nThe API is the same on all this platforms ✔️\n\n### [Deno 🦕](https://deno.land/x/fibonacci)\n\n```javascript\nimport {\n  fibonacci,\n  fibonacciSequence,\n} from \"https://deno.land/x/fibonacci/mod.ts\";\n\nfibonacci(10); //=\u003e 55\n\nfibonacci(5); //=\u003e 5\n\n// First 10 Fibonacci Numbers\nfor (const fiboNumber of fibonacciSequence(9)) {\n  console.log(fiboNumber);\n}\n\nconsole.log(`My favorites numbers are ${[...fibonacciSequence(3)]}.`);\n//=\u003e \"My favorites numbers are 0,1,1,2.\"\n```\n\n### [Node.js 🐢🚀](https://npmjs.com/package/@ultirequiem/fibonacci)\n\n```javascript\nimport { fibonacci, fibonacciSequence } from \"@ultirequiem/fibonacci\";\n```\n\n### [Browser 🌐](https://developer.mozilla.org/en-US/docs/Glossary/Browser)\n\nYou can use any [CDN](https://en.wikipedia.org/wiki/Content_delivery_network) 🔥\n\nEg 👉\n[ESM](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) ↔️\n[SkyPack](https://cdn.skypack.dev/@ultirequiem/random-item) 🆚\n[Script Tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script)\n↔️ [JSDelivr](https://cdn.jsdelivr.net/npm/@ultirequiem/random-item)\n\n## Documentation\n\nIs hosted on\n[Deno Doc](https://doc.deno.land/https://deno.land/x/fibonacci/mod.ts) 📄\n\n## Usage Example\n\n- [Fibonacci App](https://github.com/UltiRequiem/fibonacci-app): Preact +\n  Tailwind Web App\n\n## Support\n\nOpen an Issue, I will check it a soon as possible 👀\n\nIf you want to hurry me up a bit\n[send me a tweet](https://twitter.com/UltiRequiem) 😆\n\nConsider [supporting me on Patreon](https://patreon.com/UltiRequiem) if you like\nmy work 🙏\n\nDon't forget to start the repo ⭐\n\n## Authors\n\n[Eliaz Bobadilla](https://ultirequiem.com) - Creator and Maintainer 💪\n\nSee also the full list of\n[contributors](https://github.com/UltiRequiem/fibonacci.js/contributors) who\nparticipated in this project ✨\n\n## Versioning\n\nWe use [Semantic Versioning](http://semver.org). For the versions available, see\nthe [tags](https://github.com/UltiRequiem/fibonacci.js/tags) 🏷️\n\n## Licence\n\nLicensed under the MIT License 📄\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fultirequiem%2Ffibonacci","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fultirequiem%2Ffibonacci","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fultirequiem%2Ffibonacci/lists"}