{"id":19620621,"url":"https://github.com/nakov/taskboard-js","last_synced_at":"2025-04-28T03:32:07.610Z","repository":{"id":146213728,"uuid":"343239499","full_name":"nakov/TaskBoard-JS","owner":"nakov","description":"Trello-style task board, holding tasks in boards (Open, In Progress, Done): JS App + RESTful API","archived":false,"fork":false,"pushed_at":"2021-03-05T08:28:42.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":14,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-05T05:51:09.514Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/nakov.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-02-28T23:36:22.000Z","updated_at":"2021-08-27T12:42:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"9e2f736d-ce6c-420f-8a73-5269d2eb20f4","html_url":"https://github.com/nakov/TaskBoard-JS","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/nakov%2FTaskBoard-JS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nakov%2FTaskBoard-JS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nakov%2FTaskBoard-JS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nakov%2FTaskBoard-JS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nakov","download_url":"https://codeload.github.com/nakov/TaskBoard-JS/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251246155,"owners_count":21558759,"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":[],"created_at":"2024-11-11T11:19:29.209Z","updated_at":"2025-04-28T03:32:07.602Z","avatar_url":"https://github.com/nakov.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TaskBoard JS App + RESTful API\r\n\r\nThe JS app \"Task Board\" holds a board of tasks (in Trello style). Each task consists of title + description. Tasks are organized in boards, which are displayed as columns (sections): Open, In Progress, Done. The app supports the following operations:\r\n - Home page (view tasks count + menu): `/`\r\n - View the boards with tasks: `/boards`\r\n - Search tasks form: `/tasks/search`\r\n - Search tasks by keyword: `/tasks/search/:keyword`\r\n - View task details (by id): `/tasks/view/:id`\r\n - Add new task (title + description): `/tasks/create`\r\n - Edit task / move to board: `/tasks/edit/:id`\r\n\r\n## Implementation Details\r\n\r\nThe app is based on Node.js + Express.js + Pug.\r\n - It has **no database** and app data is not persistent!\r\n\r\n## Live Demo\r\n - Web app live demo: https://taskboard.nakov.repl.co\r\n - RESTful API live demo: https://taskboard.nakov.repl.co/api\r\n - Play with the code at: https://repl.it/@nakov/taskboard\r\n\r\n## Related Projects\r\n  - Android mobile client app: https://github.com/nakov/TaskBoard-AndroidClient\r\n  - Windows desktop client app: https://github.com/nakov/TaskBoard-DesktopClient\r\n\r\n## RESTful API\r\n\r\nThe following endpoints are supported:\r\n - `GET /api` - list all API endpoints\r\n - `GET /api/tasks` - list all tasks\r\n - `GET /api/tasks/:id` - returns a task by given `id`\r\n - `GET /api/tasks/search/:keyword` - list all tasks matching given keyword\r\n - `GET /api/tasks/board/:board` - list tasks by board\r\n - `POST /api/tasks` - create a new task (post a JSON object in the request body, e.g. `{\"title\":\"Add Tests\", \"description\":\"API + UI tests\", \"board\":\"Open\"}`)\r\n - `PATCH /api/tasks/:id` - edit task by `id` (send a JSON object in the request body, holding the fields to modify, e.g. `{\"title\":\"changed title\", \"board\":\"Done\"}`)\r\n - `DELETE /api/tasks/:id` - delete task by `id`\r\n - `GET /api/boards` - list all boards\r\n\r\n## Screenshots\r\n\r\n![image](https://user-images.githubusercontent.com/1689586/110086738-6a320d00-7d9b-11eb-9a59-9fd1ffbab24a.png)\r\n\r\n![image](https://user-images.githubusercontent.com/1689586/110086832-8c2b8f80-7d9b-11eb-9d9c-3d5d94e07f3b.png)\r\n\r\n![image](https://user-images.githubusercontent.com/1689586/110086878-9a79ab80-7d9b-11eb-97e8-1507e0f90020.png)\r\n\r\n![image](https://user-images.githubusercontent.com/1689586/110086907-a36a7d00-7d9b-11eb-831c-5333992d560b.png)\r\n\r\n![image](https://user-images.githubusercontent.com/1689586/110087130-edebf980-7d9b-11eb-8307-24c2eb87096d.png)\r\n\r\n![image](https://user-images.githubusercontent.com/1689586/110087188-02c88d00-7d9c-11eb-8fb0-8d9533d72fd2.png)\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnakov%2Ftaskboard-js","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnakov%2Ftaskboard-js","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnakov%2Ftaskboard-js/lists"}