{"id":20405994,"url":"https://github.com/miguelhp373/api-crud-node-js-with-express-firebase","last_synced_at":"2026-04-05T22:31:21.442Z","repository":{"id":228105097,"uuid":"773033786","full_name":"miguelhp373/api-crud-node-js-with-express-firebase","owner":"miguelhp373","description":null,"archived":false,"fork":false,"pushed_at":"2024-03-24T01:38:21.000Z","size":46,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-15T12:14:31.933Z","etag":null,"topics":["api-rest","express","firebase","node-js","render","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/miguelhp373.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":"2024-03-16T15:04:22.000Z","updated_at":"2024-05-31T01:45:22.000Z","dependencies_parsed_at":"2025-01-15T11:51:17.968Z","dependency_job_id":"e410d850-81e0-44bd-9f68-996f010272b4","html_url":"https://github.com/miguelhp373/api-crud-node-js-with-express-firebase","commit_stats":null,"previous_names":["miguelhp373/my-library-collection-app","miguelhp373/api-crud-node-js-with-express-firebase"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miguelhp373%2Fapi-crud-node-js-with-express-firebase","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miguelhp373%2Fapi-crud-node-js-with-express-firebase/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miguelhp373%2Fapi-crud-node-js-with-express-firebase/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miguelhp373%2Fapi-crud-node-js-with-express-firebase/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/miguelhp373","download_url":"https://codeload.github.com/miguelhp373/api-crud-node-js-with-express-firebase/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241950366,"owners_count":20047628,"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":["api-rest","express","firebase","node-js","render","typescript"],"created_at":"2024-11-15T05:14:14.585Z","updated_at":"2025-12-31T00:59:00.894Z","avatar_url":"https://github.com/miguelhp373.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Perfeito, aqui está o README atualizado com a licença MIT:\n\n---\n\n# API CRUD Node.js with Express and Firebase\n\nThis is a simple CRUD (Create, Read, Update, Delete) API built with Node.js, Express, and Firebase.\n\n## Getting Started\n\nTo get started with this project, follow these steps:\n\n1. Clone the repository:\n\n    ```bash\n    git clone https://github.com/seu-usuario/api-crud-node-express-with-firebase.git\n    ```\n\n2. Install dependencies:\n\n    ```bash\n    cd api-crud-node-express-with-firebase\n    npm install\n    ```\n\n3. Set up Firebase:\n\n    Create a Firebase project and obtain your Firebase credentials.\n\n    Then, create a file named `firebase.ts` inside the `firebase` folder with the following content:\n\n    ```typescript\n    // Import the functions you need from the SDKs you need\n    import { initializeApp } from \"firebase/app\";\n    \n    // Your web app's Firebase configuration\n    const firebaseConfig = {\n      apiKey: \"YOUR_API_KEY\",\n      authDomain: \"YOUR_AUTH_DOMAIN\",\n      projectId: \"YOUR_PROJECT_ID\",\n      storageBucket: \"YOUR_STORAGE_BUCKET\",\n      messagingSenderId: \"YOUR_MESSAGING_SENDER_ID\",\n      appId: \"YOUR_APP_ID\"\n    };\n    \n    // Initialize Firebase\n    const app = initializeApp(firebaseConfig);\n    \n    export default app;\n    ```\n\n    Replace `YOUR_API_KEY`, `YOUR_AUTH_DOMAIN`, `YOUR_PROJECT_ID`, `YOUR_STORAGE_BUCKET`, `YOUR_MESSAGING_SENDER_ID`, and `YOUR_APP_ID` with your Firebase credentials.\n\n4. Start the development server:\n\n    ```bash\n    npm run dev\n    ```\n\n    Your API should now be running at `http://localhost:5050`.\n\n## Available Scripts\n\n- `npm run dev`: Starts the development server using `tsx` to watch for changes in TypeScript files.\n- `npm start`: Starts the server using Node.js.\n- `npm run build`: Builds the TypeScript files.\n- `npm test`: Runs tests (not implemented in this project).\n\n## Dependencies\n\n- [Express](https://www.npmjs.com/package/express): Fast, unopinionated, minimalist web framework for Node.js.\n- [Firebase](https://www.npmjs.com/package/firebase): Firebase SDK for JavaScript.\n- [Firebase Admin SDK](https://www.npmjs.com/package/firebase-admin): Firebase Admin Node.js SDK.\n- [uuid](https://www.npmjs.com/package/uuid): Simple, fast generation of RFC4122 UUIDs.\n  \n## Dev Dependencies\n\n- [@types/express](https://www.npmjs.com/package/@types/express): TypeScript definitions for Express.\n- [@types/node](https://www.npmjs.com/package/@types/node): TypeScript definitions for Node.js.\n- [tsx](https://www.npmjs.com/package/tsx): TypeScript transpiler.\n- [typescript](https://www.npmjs.com/package/typescript): TypeScript language server and compiler.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n---\n\n\nMake sure to replace the values for `YOUR_API_KEY`, `YOUR_AUTH_DOMAIN`, `YOUR_PROJECT_ID`, `YOUR_STORAGE_BUCKET`, `YOUR_MESSAGING_SENDER_ID`, and `YOUR_APP_ID` with your actual Firebase credentials. This README provides clear instructions on how to configure and start the project, as well as information about available scripts, dependencies, and licensing.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiguelhp373%2Fapi-crud-node-js-with-express-firebase","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmiguelhp373%2Fapi-crud-node-js-with-express-firebase","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiguelhp373%2Fapi-crud-node-js-with-express-firebase/lists"}