{"id":26417981,"url":"https://github.com/yogain123/linked-list-api","last_synced_at":"2026-05-17T19:37:27.863Z","repository":{"id":40728939,"uuid":"234724925","full_name":"yogain123/Linked-List-API","owner":"yogain123","description":"Create a REST API app which exposes API endpoints , for carrying out Linked List operations.","archived":false,"fork":false,"pushed_at":"2022-12-11T21:04:36.000Z","size":293,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-19T16:01:45.983Z","etag":null,"topics":["algorithms","data-structures","javascript","linked-list","redis"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yogain123.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-01-18T11:30:58.000Z","updated_at":"2020-01-31T22:12:23.000Z","dependencies_parsed_at":"2023-01-27T07:01:50.877Z","dependency_job_id":null,"html_url":"https://github.com/yogain123/Linked-List-API","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yogain123/Linked-List-API","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yogain123%2FLinked-List-API","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yogain123%2FLinked-List-API/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yogain123%2FLinked-List-API/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yogain123%2FLinked-List-API/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yogain123","download_url":"https://codeload.github.com/yogain123/Linked-List-API/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yogain123%2FLinked-List-API/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33152069,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["algorithms","data-structures","javascript","linked-list","redis"],"created_at":"2025-03-18T01:16:41.390Z","updated_at":"2026-05-17T19:37:27.816Z","avatar_url":"https://github.com/yogain123.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Linked-List-API\n\n#### Create a REST API app which exposes API endpoints , for carrying out Linked List operations.\n\nCreate a web based REST API app, which exposes following API endpoints for using the link list functionalities.\n\n- Create: To create a link list.\n- Push: add object to end of existing link list.\n- Pop: remove last object of the given link list.\n- Remove: Delete the provided object form the given link list, if it exisits.\n- List: show the complete link list.\n- Reverse: show the linklist in reverse order.(the Tail becomes new head, and Head becomes new tail)\n- Delete: Destroy the given link list completely.\n  Do appropriate error handling. Choose Any language to build the REST API app\n\nThe app APIs can be used as follows:\n\nCREATE API : POST /api/link\n\n    REQUEST body JSON\n    {\n    \tname: 'John',\n    \tbirthyear: 1981\n    }\n\n    RESPONSE\n    {\n    \tmeta: {\n    \t\tid: 101,\n    \t\tlength: 1\n    \t},\n    \tobject: [{\n    \t\tid: 1,\n    \t\tname: 'John',\n    \t\tbirthyear: 1981,\n    \t\tnext: null\n    \t}]\n    }\n\nGET /api/link/101\n\n    RESPONSE\n    {\n    \tmeta: {\n    \t\tid: 101,\n    \t\tlength: 1\n    \t},\n    \tobject: [{\n    \t\tid: 1,\n    \t\tname: 'John',\n    \t\tbirthyear: 1981,\n    \t\tnext: null\n    \t}]\n    }\n\nPUSH API : PUT /api/link/101\n\n    REQUEST body JSON\n    {\n    \tname: 'Doe',\n    \tbirthyear: 1982\n    }\n\n    RESPONSE\n    {\n    \tmeta: {\n    \t\tid: 101,\n    \t\tlength: 2\n    \t},\n    \tobject: [{\n    \t\tid: 1,\n    \t\tname: 'John',\n    \t\tbirthyear: 1981,\n    \t\tnext: 2\n    \t}, {\n    \t\tid: 2,\n    \t\tname: 'Doe',\n    \t\tbirthyear: 1982,\n    \t\tnext: null\n    \t}]\n    }\n\nPUSH API : PUT /api/link/101\n\n    REQUEST body JSON\n    {\n    \tname: 'Lorem',\n    \tbirthyear: 1912\n    }\n\n    RESPONSE\n    {\n    \tmeta: {\n    \t\tid: 101,\n    \t\tlength: 3\n    \t},\n    \tobject: [{\n    \t\tid: 1,\n    \t\tname: 'John',\n    \t\tbirthyear: 1981,\n    \t\tnext: 2\n    \t}, {\n    \t\tid: 2,\n    \t\tname: 'Doe',\n    \t\tbirthyear: 1982,\n    \t\tnext: 3\n    \t}, {\n    \t\tid: 3,\n    \t\tname: 'Lorem',\n    \t\tbirthyear: 1912,\n    \t\tnext: null\n    \t}]\n    }\n\nPOP API : GET /api/link/pop/101\n\n    RESPONSE\n    {\n    \tname: 'Lorem',\n    \tbirthyear: 1912,\n    }\n\nLIST API : GET /api/link/101\n\n    RESPONSE\n    {\n    \tmeta: {\n    \t\tid: 101,\n    \t\tlength: 2\n    \t},\n    \tobject: [{\n    \t\tid: 1,\n    \t\tname: 'John',\n    \t\tbirthyear: 1981,\n    \t\tnext: 2\n    \t}, {\n    \t\tid: 2,\n    \t\tname: 'Doe',\n    \t\tbirthyear: 1982,\n    \t\tnext: null\n    \t}]\n    }\n\nREMOVE API : POST /api/link/remove/101\n\n    REQUEST body JSON\n    {\n    \tname: 'John',\n    \tbirthyear: 1981\n    }\n\n    RESPONSE\n    {\n    \tmeta: {\n    \t\tid: 101,\n    \t\tlength: 1\n    \t},\n    \tobject: [{\n    \t\tid: 2,\n    \t\tname: 'Doe',\n    \t\tbirthyear: 1982,\n    \t\tnext: null\n    \t}]\n    }\n\nPUSH API : PUT /api/link/101\n\n    REQUEST body JSON\n    {\n    \tname: 'Ipsum',\n    \tbirthyear: 1882\n    }\n\n    RESPONSE\n    {\n    \tmeta: {\n    \t\tid: 101,\n    \t\tlength: 2\n    \t},\n    \tobject: [{\n    \t\tid: 2,\n    \t\tname: 'Doe',\n    \t\tbirthyear: 1982,\n    \t\tnext: 3\n    \t}, {\n    \t\tid: 3,\n    \t\tname: 'Ipsum',\n    \t\tbirthyear: 1882,\n    \t\tnext: null\n    \t}]\n    }\n\nPUSH API : PUT /api/link/101\n\n    REQUEST body JSON\n    {\n    \tname: 'Suma',\n    \tbirthyear: 1921\n    }\n\n    RESPONSE\n    {\n    \tmeta: {\n    \t\tid: 101,\n    \t\tlength: 3\n    \t},\n    \tobject: [{\n    \t\tid: 2,\n    \t\tname: 'Doe',\n    \t\tbirthyear: 1982,\n    \t\tnext: 3\n    \t}, {\n    \t\tid: 3,\n    \t\tname: 'Ipsum',\n    \t\tbirthyear: 1882,\n    \t\tnext: 4\n    \t}, {\n    \t\tid: 4,\n    \t\tname: 'Suma',\n    \t\tbirthyear: 1921,\n    \t\tnext: null\n    \t}]\n    }\n\nREMOVE API : POST /api/link/remove/101\n\n    REQUEST body JSON\n    {\n    \tname: 'Ipsum',\n    \tbirthyear: 1882\n    }\n\n    RESPONSE\n    {\n    \tmeta: {\n    \t\tid: 101,\n    \t\tlength: 3\n    \t},\n    \tobject: [{\n    \t\tid: 2,\n    \t\tname: 'Doe',\n    \t\tbirthyear: 1982,\n    \t\tnext: 4\n    \t}, {\n    \t\tid: 4,\n    \t\tname: 'Suma',\n    \t\tbirthyear: 1921,\n    \t\tnext: null\n    \t}]\n    }\n\nLIST API : GET /api/link/101\n\n    RESPONSE\n    {\n    \tmeta: {\n    \t\tid: 101,\n    \t\tlength: 3\n    \t},\n    \tobject: [{\n    \t\tid: 2,\n    \t\tname: 'Doe',\n    \t\tbirthyear: 1982,\n    \t\tnext: 4\n    \t}, {\n    \t\tid: 4,\n    \t\tname: 'Suma',\n    \t\tbirthyear: 1921,\n    \t\tnext: null\n    \t}]\n    }\n\nREVERSE API : GET /api/link/reverse/101\n\n    RESPONSE\n    {\n    \tmeta: {\n    \t\tid: 101,\n    \t\tlength: 3\n    \t},\n    \tobject: [{\n    \t\tid: 2,\n    \t\tname: 'Doe',\n    \t\tbirthyear: 1982,\n    \t\tnext: null\n    \t}, {\n    \t\tid: 4,\n    \t\tname: 'Suma',\n    \t\tbirthyear: 1921,\n    \t\tnext: 2\n    \t}]\n    }\n\nDELETE API : DELETE /api/link/101\n\n    RESPONSE status code 204, with empty response object.\n\n### Adding Redis\n\n- brew install redis\n- redis-server\n- redis-cli\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyogain123%2Flinked-list-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyogain123%2Flinked-list-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyogain123%2Flinked-list-api/lists"}