{"id":17949994,"url":"https://github.com/mouracamila/nodejs-crud","last_synced_at":"2026-02-10T21:03:18.512Z","repository":{"id":42858452,"uuid":"260217496","full_name":"mouracamila/nodejs-crud","owner":"mouracamila","description":"This project was developed at RocketSeat Bootcamp 11.  API with NodeJs","archived":false,"fork":false,"pushed_at":"2022-12-12T15:37:09.000Z","size":188,"stargazers_count":0,"open_issues_count":6,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-02T21:48:19.620Z","etag":null,"topics":["api","crud","express","json","nodejs","nodemon","query","rocketseat","uuid"],"latest_commit_sha":null,"homepage":"","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/mouracamila.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-04-30T13:21:54.000Z","updated_at":"2020-05-26T17:01:10.000Z","dependencies_parsed_at":"2023-01-27T21:30:37.752Z","dependency_job_id":null,"html_url":"https://github.com/mouracamila/nodejs-crud","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mouracamila/nodejs-crud","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mouracamila%2Fnodejs-crud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mouracamila%2Fnodejs-crud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mouracamila%2Fnodejs-crud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mouracamila%2Fnodejs-crud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mouracamila","download_url":"https://codeload.github.com/mouracamila/nodejs-crud/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mouracamila%2Fnodejs-crud/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29316406,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-10T20:44:44.282Z","status":"ssl_error","status_checked_at":"2026-02-10T20:44:43.393Z","response_time":65,"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":["api","crud","express","json","nodejs","nodemon","query","rocketseat","uuid"],"created_at":"2024-10-29T09:36:29.448Z","updated_at":"2026-02-10T21:03:18.478Z","avatar_url":"https://github.com/mouracamila.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://www.vzhurudolu.cz/prirucka-content/dist/images/original/node-js.svg\" style=\"border:1px solid #ddd;width:auto;\"\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003e\n   CRUD with Nodejs\n\u003c/h1\u003e\n\n## Introduction\n\nThis is a basic structure for a project management application.\n\n### Technologies used and their definitions:\n\n- **NodeJS**: As an asynchronous event-driven JavaScript runtime, Node.js is designed to build scalable network applications.\n- **Express**: Framework for building web applications on top of NodeJS.\n- **CRUD**: Acronym  for **C**reate, **R**ead, **U**pdate and **D**elete. It is set of operation for servers to execute (POST, GET PUT and DELETE).\n- **UUID**: Generator of unique identifiers for objects.\n- **Query parameters**: Are a defined set of parameters attached to the end of a url. They are extensions of the URL that are used to help define specific content or actions based on the data being passed. Making filtering and paging possible.\n- **JSON**: The json() method of the Body mixin takes a Response stream and reads it to completion. It returns a promise that resolves with the result of parsing the body text as JSON.\n- **Nodemon**: Utility that will monitor for any changes in your source and automatically restart your server.\n\n## Installation\n\n1. Clone this Repository:\n\n   `$ git clone git@github.com:mouracamila/nodejs-crud.git`\n\n2. Installing dependencies:\n\n   `$ yarn`\n\n3. Running project:\n\n   `$ yarn dev`\n\n##### Obs: **Yarn** should be run where **package.json** is in your project\n\n#### After running the project, in your terminal, this message should be displayed:\n\n```\n[nodemon] starting `node src`\n 🚀 Back-end started!\n```\n\n### Create project\n\n`POST /projects`\n\n#### Parameters\n\n| Name  | Type | Required | Description   |\n| ----- | ---- | -------- | ------------- |\n| title | any  | Yes      | Project title |\n| owner | any  | Yes      | Project owner |\n\n#### Responses\n\nSUCCESS  \n`Code: 200`\n\n```\n{\n  \"id\": \u003ctokenUUID\u003e,\n  \"title\": \u003cany\u003e,\n  \"owner\": \u003cany\u003e\n}\n```\n\n### List project\n\n`GET /projects?title=\u003cany\u003e\u0026owner=\u003cany\u003e`\n\n#### Parameters\n\nQuery parameters.\n\n| Name  | Type | Required | Description   |\n| ----- | ---- | -------- | ------------- |\n| title | any  | Yes      | Project title |\n| owner | any  | Yes      | Project owner |\n\n#### Responses\n\nSUCCESS  \n`Code: 200`\n\n```\n{\n  \"id\": \u003ctokenUUID\u003e,\n  \"title\": \u003cany\u003e,\n  \"owner\": \u003cany\u003e\n}\n```\n\nERROR  \n`Code: 400`\n\n```\n{\n  []\n}\n```\n\n### Update project\n\n`PUT /projects`\n\n#### Parameters\n\n| Name  | Type | Required | Description |\n| ----- | ---- | -------- | ----------- |\n| token | any  | Yes      | Token UUID  |\n\n#### Responses\n\nSUCCESS  \n`Code: 200`\n\n```\n{\n  \"id\": \u003ctokenUUID\u003e,\n  \"title\": \u003cany\u003e,\n  \"owner\": \u003cany\u003e\n}\n```\n\nERROR  \n`Code: 400`\n\n```\n{\n  \"error\": \"Project not found.\"\n}\n```\n\n### Delete project\n\n`DELETE /projects`\n\n#### Parameters\n\n| Name  | Type | Required | Description |\n| ----- | ---- | -------- | ----------- |\n| token | any  | Yes      | Token UUID  |\n\n#### Responses\n\nSUCCESS  \n`Code: 200`\n\n```\n[]\n```\n\nERROR  \n`Code: 400`\n\n```\n{\n\"error\": \"Project not found.\"\n}\n```\n\n## License\n\nThis project is under license from [MIT](https://en.wikipedia.org/wiki/MIT_License).\n\n---\n\nwith ❤ - [MouraCamila](https://github.com/mouracamila)\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmouracamila%2Fnodejs-crud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmouracamila%2Fnodejs-crud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmouracamila%2Fnodejs-crud/lists"}