{"id":18919673,"url":"https://github.com/gabriel-logan/dsacjs","last_synced_at":"2025-09-04T23:32:23.803Z","repository":{"id":260964597,"uuid":"882836975","full_name":"gabriel-logan/DsacJs","owner":"gabriel-logan","description":"A high-performance JavaScript and TypeScript library offering a comprehensive set of efficient data structures. Simplify your algorithm implementation and data manipulation with optimized, easy-to-use tools.","archived":false,"fork":false,"pushed_at":"2025-02-19T17:35:01.000Z","size":5877,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-22T13:55:20.360Z","etag":null,"topics":["data-structures","data-structures-algorithms","data-structures-and-algorithms","dstc","std","stdlib"],"latest_commit_sha":null,"homepage":"https://gabriel-logan.github.io/DsacJs/","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/gabriel-logan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["gabriel-logan"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":"gabriellogan","custom":null}},"created_at":"2024-11-03T22:01:04.000Z","updated_at":"2025-02-19T17:35:04.000Z","dependencies_parsed_at":"2025-01-09T01:31:31.636Z","dependency_job_id":null,"html_url":"https://github.com/gabriel-logan/DsacJs","commit_stats":null,"previous_names":["gabriel-logan/dstc","gabriel-logan/dsacjs"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/gabriel-logan/DsacJs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabriel-logan%2FDsacJs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabriel-logan%2FDsacJs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabriel-logan%2FDsacJs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabriel-logan%2FDsacJs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gabriel-logan","download_url":"https://codeload.github.com/gabriel-logan/DsacJs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabriel-logan%2FDsacJs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273688269,"owners_count":25150299,"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","status":"online","status_checked_at":"2025-09-04T02:00:08.968Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["data-structures","data-structures-algorithms","data-structures-and-algorithms","dstc","std","stdlib"],"created_at":"2024-11-08T10:38:35.290Z","updated_at":"2025-09-04T23:32:18.788Z","avatar_url":"https://github.com/gabriel-logan.png","language":"TypeScript","funding_links":["https://github.com/sponsors/gabriel-logan","https://buymeacoffee.com/gabriellogan"],"categories":[],"sub_categories":[],"readme":"# IN DEVELOPMENT\n\n# DsacJs\n\n## Data Structures - Algorithm - Toolkit Collection\n\nA high-performance JavaScript and TypeScript library offering a comprehensive set of efficient data structures. Simplify your algorithm implementation and data manipulation with optimized, easy-to-use tools.\n\n[![npm](https://img.shields.io/npm/v/dsacjs)](https://www.npmjs.com/package/dsacjs)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![npm downloads](https://img.shields.io/npm/dm/dsacjs.svg?style=flat-square)](https://npm-stat.com/charts.html?package=dsacjs)\n\n## Documentation\n\n- [Website Documentation](https://gabriel-logan.github.io/DsacJs/)\n- [NPM Package](https://www.npmjs.com/package/dsacjs)\n\n## CDN\n\n```html\n\u003cscript type=\"module\"\u003e\n  import { LinkedList } from \"https://cdn.jsdelivr.net/npm/dsacjs@0.0.1/+esm\";\n\n  const linkedList = new LinkedList();\n\n  linkedList.add(1);\n  linkedList.add(2);\n  linkedList.add(3);\n\n  console.log(linkedList.toArray());\n\u003c/script\u003e\n```\n\n## Installation\n\n```bash\nnpm install dsacjs\n```\n\n```bash\nyarn add dsacjs\n```\n\n```bash\npnpm add dsacjs\n```\n\n```bash\nbun add dsacjs\n```\n\n## Usage\n\n```javascript\nimport { LinkedList } from \"dsacjs\";\n\nconst list = new LinkedList();\nlist.add(1);\nlist.add(2);\nlist.add(3);\n\nconsole.log(list.toArray()); // [1, 2, 3]\n```\n\n## Features\n\n- **Data Structures**: A comprehensive set of data structures including linked lists, stacks, queues, trees, graphs, and more.\n\n- **Algorithms**: A collection of algorithms for sorting, searching, and other common tasks.\n\n- **Toolkit**: A set of utility functions for working with data structures and algorithms.\n\n## Why DsacJs?\n\n- **Performance**: High-performance implementations with optimized algorithms and data structures.\n\n- **Ease of Use**: Simplify your algorithm implementation and data manipulation with easy-to-use tools.\n\n- **Comprehensive**: A comprehensive set of data structures, algorithms, and utility functions for all your needs.\n\n## Contributing\n\nContributions are welcome! For feature requests and bug reports, please submit an issue. For code contributions, please follow the [contribution guidelines](CONTRIBUTING.md).\n\n## License\n\nDsacJs is [MIT licensed](LICENSE).\n\n## Contributing\n\nThank you for considering contributing to DsacJs! We welcome all contributions, including bug reports, feature requests, and code contributions.\n\n## Code of Conduct\n\nThis project and everyone participating in it is governed by the [DsacJs Code of Conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.\n\n## Authors\n\n- [Gabriel Logan](https://github.com/gabriel-logan/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabriel-logan%2Fdsacjs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgabriel-logan%2Fdsacjs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabriel-logan%2Fdsacjs/lists"}