{"id":24054172,"url":"https://github.com/megoxv/devcheats","last_synced_at":"2026-04-09T15:52:01.160Z","repository":{"id":271578772,"uuid":"913897383","full_name":"megoxv/DevCheats","owner":"megoxv","description":"Helpful cheatsheets for popular programming languages, frameworks, and development tools, with everything you need to know! 😊📚","archived":false,"fork":false,"pushed_at":"2025-01-08T15:24:26.000Z","size":103,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-03T12:56:26.536Z","etag":null,"topics":["backend","cheat-sheets","cheatsheets","css","filamentphp","frontend","javascript","laravel","nextjs","php","react"],"latest_commit_sha":null,"homepage":"https://devcheat.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/megoxv.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":"2025-01-08T15:05:18.000Z","updated_at":"2025-01-10T20:00:11.000Z","dependencies_parsed_at":"2025-01-08T16:58:39.782Z","dependency_job_id":null,"html_url":"https://github.com/megoxv/DevCheats","commit_stats":null,"previous_names":["megoxv/devcheats"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/megoxv/DevCheats","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/megoxv%2FDevCheats","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/megoxv%2FDevCheats/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/megoxv%2FDevCheats/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/megoxv%2FDevCheats/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/megoxv","download_url":"https://codeload.github.com/megoxv/DevCheats/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/megoxv%2FDevCheats/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266140333,"owners_count":23882655,"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":["backend","cheat-sheets","cheatsheets","css","filamentphp","frontend","javascript","laravel","nextjs","php","react"],"created_at":"2025-01-09T03:01:47.135Z","updated_at":"2025-12-30T19:55:23.636Z","avatar_url":"https://github.com/megoxv.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DevCheats 🚀\n\n**DevCheats** is a collection of cheat sheets for developers, covering popular technologies like React, Next.js, Laravel, and FilamentPHP. Each cheat sheet is written in **MDX format**, making it easy to integrate into documentation websites or static site generators.\n\n---\n\n## Table of Contents\n\n1. [Features](#features)\n2. [Project Structure](#project-structure)\n3. [Getting Started](#getting-started)\n4. [Contributing](#contributing)\n5. [License](#license)\n\n---\n\n## Features ✨\n\n- **MDX Format**: All cheat sheets are written in MDX, combining Markdown and JSX for rich content.\n- **Structured Content**: Organized into categories like Basics, Hooks, Advanced, etc.\n- **Code Examples** Includes practical code snippets for quick reference.\n- **Frontmatter Support**: Each MDX file includes metadata like `title`, `description`, and `tags` for better organization.\n- **Extensible**: Easily add new cheat sheets for other technologies.\n\n---\n\n## Project Structure 📂\n\n```\nDevCheats/\n├── content/\n│   ├── react/\n│   │   ├── basics/\n│   │   │   ├── components.mdx\n│   │   │   ├── props.mdx\n│   │   │   └── state.mdx\n│   │   ├── hooks/\n│   │   │   ├── useState.mdx\n│   │   │   ├── useEffect.mdx\n│   │   │   └── useContext.mdx\n│   │   └── advanced/\n│   │       ├── context-api.mdx\n│   │       ├── render-props.mdx\n│   │       └── higher-order-components.mdx\n│   ├── nextjs/\n│   │   ├── basics/\n│   │   │   ├── routing.mdx\n│   │   │   ├── pages.mdx\n│   │   │   └── layout.mdx\n│   │   ├── data-fetching/\n│   │   │   ├── getStaticProps.mdx\n│   │   │   ├── getServerSideProps.mdx\n│   │   │   └── getStaticPaths.mdx\n│   │   └── advanced/\n│   │       ├── api-routes.mdx\n│   │       ├── dynamic-routes.mdx\n│   │       └── middleware.mdx\n│   ├── laravel/\n│   │   ├── basics/\n│   │   │   ├── routing.mdx\n│   │   │   ├── controllers.mdx\n│   │   │   └── views.mdx\n│   │   ├── database/\n│   │   │   ├── migrations.mdx\n│   │   │   ├── eloquent.mdx\n│   │   │   └── seeders.mdx\n│   │   └── advanced/\n│   │       ├── middleware.mdx\n│   │       ├── events.mdx\n│   │       └── queues.mdx\n│   └── filamentphp/\n│       ├── basics/\n│       │   ├── resources.mdx\n│       │   ├── forms.mdx\n│       │   └── tables.mdx\n│       └── advanced/\n│           ├── widgets.mdx\n│           ├── custom-pages.mdx\n│           └── notifications.mdx\n├── README.md\n└── package.json\n```\n\n---\n\n## Getting Started 🛠️\n\n### Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/your-username/DevCheats.git\n   cd DevCheats\n   ```\n\n2. Install dependencies (if using a static site generator):\n\n   ```bash\n   npm install\n   ```\n\n3. Start the development server (if applicable):\n\n   ```bash\n   npm run dev\n   ```\n\n4. Open your browser and navigate to `http://localhost:3000` (or the appropriate port).\n\n---\n\n## Contributing 🤝\n\nWe welcome contributions! Here’s how you can help:\n\n1. **Add New Cheat Sheets**: Add cheat sheets for new technologies or expand existing ones.\n2. **Fix Issues**: Report or fix bugs and typos.\n3. **Improve Documentation**: Enhance the README or add comments to the code.\n\n### Steps to Contribute\n\n1. Fork the repository.\n2. Create a new branch:\n\n   ```bash\n   git checkout -b feature/your-feature-name\n   ```\n\n3. Make your changes and commit them:\n\n   ```bash\n   git commit -m \"Add your message here\"\n   ```\n\n4. Push your changes:\n\n   ```bash\n   git push origin feature/your-feature-name\n   ```\n\n5. Open a pull request on GitHub.\n\n---\n\n## License 📜\n\nThis project is licensed under the **MIT License**. See the [LICENSE](LICENSE) file for details.\n\n---\n\n## Acknowledgments 🙏\n\n- Inspired by the need for quick and accessible developer references.\n- Built with ❤️ by the open-source community.\n\n---\n\nHappy Coding! 🎉","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmegoxv%2Fdevcheats","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmegoxv%2Fdevcheats","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmegoxv%2Fdevcheats/lists"}