{"id":24101218,"url":"https://github.com/lisba/data_structures_javascript","last_synced_at":"2026-06-10T03:31:05.906Z","repository":{"id":40444939,"uuid":"336629168","full_name":"Lisba/data_structures_javascript","owner":"Lisba","description":"Main data structures library for javascript","archived":false,"fork":false,"pushed_at":"2022-05-12T23:44:54.000Z","size":1162,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-04-30T03:21:25.581Z","etag":null,"topics":["arrays","binary-search-tree","data-structure","graphs","hash-table","javascipt","linkedlist","maps","queues","stacks","trees"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/@lisba/data-structures-js","language":"JavaScript","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/Lisba.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}},"created_at":"2021-02-06T20:24:47.000Z","updated_at":"2022-05-08T18:40:02.000Z","dependencies_parsed_at":"2022-08-09T20:31:27.644Z","dependency_job_id":null,"html_url":"https://github.com/Lisba/data_structures_javascript","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lisba%2Fdata_structures_javascript","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lisba%2Fdata_structures_javascript/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lisba%2Fdata_structures_javascript/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lisba%2Fdata_structures_javascript/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Lisba","download_url":"https://codeload.github.com/Lisba/data_structures_javascript/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241045486,"owners_count":19899656,"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":["arrays","binary-search-tree","data-structure","graphs","hash-table","javascipt","linkedlist","maps","queues","stacks","trees"],"created_at":"2025-01-10T16:42:30.302Z","updated_at":"2026-06-10T03:31:05.850Z","avatar_url":"https://github.com/Lisba.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @lisba/data-structures-js\n\n![npm](https://img.shields.io/npm/v/@lisba/data-structures-js)\n![GitHub last commit](https://img.shields.io/github/last-commit/Lisba/data_structures_javascript)\n![npm](https://img.shields.io/npm/dm/@lisba/data-structures-js)\n![NPM](https://img.shields.io/npm/l/@lisba/data-structures-js)\n\n#### Common data structures implementation in Javascript.\n\n- #### [Contents](#contents)\n  - [Installation](#installation)\n  - [Usage](#usage)\n  - [Collaborate](#collaborate)\n  - [License](#license)\n\n## Installation\n\nyarn: `yarn add @lisba/data-structures-js`\n\nnpm: `npm install @lisba/data-structures-js`\n\n## Usage\n\n```js\nimport {\n  Stack,\n  Queue,\n  HashTable,\n  MySinglyLinkedList,\n  MyDoublyLinkedList,\n  BinarySearchTree,\n  UndirectedGraph,\n} from '@lisba/data-structures-js';\n\nconst myStack = new Stack();\nconst myQueue = new Queue();\nconst myHashTable = new HashTable(50);\nconst mySinglyLinkedList = new MySinglyLinkedList(1);\nconst myDoublyLinkedList = new MyDoublyLinkedList(1);\nconst myTree = new BinarySearchTree();\nconst myGraph = new UndirectedGraph();\n```\n\n## Collaborate\n\nIn order to collaborate with the proyect you need to:\n\n1. Fork the repo.\n2. Clone the repo to work locally with `git clone repo-url`.\n3. Install dependencies with `yarn install`.\n4. Develop suggested changes in a new branch (make sure you are using the prettier config, you can run `yarn format` or install the prettier extension if you are using vsc editor to format on save).\n5. Run `yarn build` and `yarn start` to verify your changes doesn't has errors.\n6. Push your changes to your repo `git push remote-repo branch-name`.\n7. Make the pull request.\n\n## License\n\nThe MIT License. Full License [here](https://github.com/Lisba/data_structures_javascript/blob/master/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flisba%2Fdata_structures_javascript","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flisba%2Fdata_structures_javascript","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flisba%2Fdata_structures_javascript/lists"}