{"id":24776978,"url":"https://github.com/marcusvbrangel/ignite-defafio-conceitos-do-node","last_synced_at":"2026-04-12T11:36:07.543Z","repository":{"id":42510148,"uuid":"463714150","full_name":"marcusvbrangel/ignite-defafio-conceitos-do-node","owner":"marcusvbrangel","description":"This is an application to manage tasks. It will be allowed to create a user with name and username, as well as CRUD tasks.","archived":false,"fork":false,"pushed_at":"2023-02-12T01:11:48.000Z","size":562,"stargazers_count":1,"open_issues_count":7,"forks_count":0,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-01-29T07:41:29.147Z","etag":null,"topics":["cors","express","jest","nodejs","nodemon","supertest","uuid"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marcusvbrangel.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":"2022-02-26T00:33:35.000Z","updated_at":"2022-02-26T07:39:57.000Z","dependencies_parsed_at":"2023-02-13T20:17:06.951Z","dependency_job_id":null,"html_url":"https://github.com/marcusvbrangel/ignite-defafio-conceitos-do-node","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcusvbrangel%2Fignite-defafio-conceitos-do-node","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcusvbrangel%2Fignite-defafio-conceitos-do-node/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcusvbrangel%2Fignite-defafio-conceitos-do-node/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcusvbrangel%2Fignite-defafio-conceitos-do-node/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marcusvbrangel","download_url":"https://codeload.github.com/marcusvbrangel/ignite-defafio-conceitos-do-node/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245191614,"owners_count":20575251,"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":["cors","express","jest","nodejs","nodemon","supertest","uuid"],"created_at":"2025-01-29T07:40:40.033Z","updated_at":"2026-04-12T11:36:07.493Z","avatar_url":"https://github.com/marcusvbrangel.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](code_of_conduct.md) \n\n\u003c/br\u003e\n\n# Ignite Node - Node.js concepts\n\n\u003c/br\u003e\n\n## About :cyclone:\n\n#### This is an application to manage tasks. It will be allowed to create a user with name and username, as well as CRUD tasks.\n\n\u003c/br\u003e\n\n## requirements :cyclone:\n\n- [ x ] Create a new todo.\n- [ x ] List all todos.\n- [ x ] Update the title and deadline of an existing todo.\n- [ x ] Mark a todo as done.\n- [ x ] Delete a todo.\n\n\n\u003c/br\u003e\n\n## Tests :cyclone:\n\n- [ x ] Should be able to list all user's todos.\n- [ x ] Should be able to create a new todo.\n- [ x ] Should be able to update a todo.\n- [ x ] Should not be able to update a non existing todo.\n- [ x ] Should be able to mark a todo as done.\n- [ x ] Should be able to delete a todo.\n- [ x ] Should not be able to delete a non existing todo.\n\n\n\u003c/br\u003e\n\n## Application routes :cyclone:\n\n* \u003cb\u003ePOST\u003c/b\u003e /users\n* \u003cb\u003eGET\u003c/b\u003e /todos\n* \u003cb\u003ePOST\u003c/b\u003e /todos\n* \u003cb\u003ePUT\u003c/b\u003e /todos/:id\n* \u003cb\u003ePATCH\u003c/b\u003e /todos/:id/done\n* \u003cb\u003eDELETE\u003c/b\u003e /todos/:id\n\n\n\u003cbr /\u003e\n\n## Prerequisites :cyclone:\n\nMake sure you have installed all of the following prerequisites on your development machine:\n\n* Git - [Download \u0026 Install Git](https://git-scm.com/downloads/). OSX and Linux machines typically have this already installed.\n* Node.js - [Download \u0026 Install Node.js](https://nodejs.org/en/download/) and the npm package manager. \n\n\n\u003c/br\u003e\n\n## Dependency libraries :cyclone:\n\n* cors\n* express\n* uuid\n* jest\n* nodemon\n* supertest\n\n\n\u003cbr /\u003e\n\n## Getting Started :cyclone:\n\n1. Clone this repository\n\n```sh\ngit clone https://github.com/marcusvbrangel/ignite-defafio-conceitos-do-node.git\n```\n\n2. Install the dependencies\n\n```sh\nnpm install\n```\n\n3. Start the app\n\n```sh\nnpm run dev\n```\n\n\u003cbr /\u003e\n\n\n\u003cbr /\u003e\n\n## Contributing :cyclone:\n\nHave a look through existing [Issues](https://github.com/marcusvbrangel/ignite-defafio-conceitos-do-node/issues) and [Pull Requests](https://github.com/marcusvbrangel/ignite-defafio-conceitos-do-node/pulls) that you could help with.\n\n\u003cbr /\u003e\n\nIf this is your first time contributing to this project, please do read our [Contributor Workflow Guide](https://github.com/the-guild-org/Stack/blob/master/CONTRIBUTING.md) before you get started off.\n\nFeel free to open issues and pull requests. We're always welcome support from the community.\n\n\n\u003cbr /\u003e\n\n## Code of Conduct :cyclone:\n\nHelp me keep this project open and inclusive. Please read and follow our [\nof Conduct](https://github.com/the-guild-org/Stack/blob/master/CODE_OF_CONDUCT.md) as adopted from [Contributor Covenant](https://www.contributor-covenant.org/)\n\n\n\n\u003cbr /\u003e\n\n## Acknowledgments :cyclone:\n\n[Rocketseat](https://www.rocketseat.com.br/)\n\n\n\n\u003cbr /\u003e\n\n## Contact :cyclone:\n\n* Email:    marcus.vbrangel@gmail.com\n* GitHub:   https://github.com/marcusvbrangel/\n* Twitter:  https://twitter.com/marcusvbrangel/\n* LinkedIn: https://www.linkedin.com/in/marcusrangel/\n\n\n\n\n\n\u003cbr /\u003e\n\n## License :cyclone:\n\nCopyright (c) Marcus Rangel. All rights reserved.\n\nLicensed under the [MIT](LICENSE) license.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcusvbrangel%2Fignite-defafio-conceitos-do-node","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarcusvbrangel%2Fignite-defafio-conceitos-do-node","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcusvbrangel%2Fignite-defafio-conceitos-do-node/lists"}