{"id":48763913,"url":"https://github.com/aurorascharff/next15-filterlist","last_synced_at":"2026-04-13T07:44:03.847Z","repository":{"id":259449959,"uuid":"863723636","full_name":"aurorascharff/next15-filterlist","owner":"aurorascharff","description":"An interactive, responsive, progressively enhanced project task manager with filtering using Next.js 15, React 19, Tailwind CSS and Prisma.","archived":false,"fork":false,"pushed_at":"2026-02-21T16:52:01.000Z","size":2493,"stargazers_count":307,"open_issues_count":0,"forks_count":57,"subscribers_count":7,"default_branch":"main","last_synced_at":"2026-02-25T15:11:59.816Z","etag":null,"topics":["app-router","nextjs","progressive-enhancement","react19","responsive-design","rsc","tailwindcss"],"latest_commit_sha":null,"homepage":"https://next15-filterlist.vercel.app","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/aurorascharff.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-09-26T19:47:11.000Z","updated_at":"2026-02-17T13:41:47.000Z","dependencies_parsed_at":"2024-10-25T15:01:20.684Z","dependency_job_id":"92285379-3cdc-46fd-8d70-7a3a6d60d835","html_url":"https://github.com/aurorascharff/next15-filterlist","commit_stats":null,"previous_names":["aurorascharff/next15-filterlist"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aurorascharff/next15-filterlist","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurorascharff%2Fnext15-filterlist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurorascharff%2Fnext15-filterlist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurorascharff%2Fnext15-filterlist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurorascharff%2Fnext15-filterlist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aurorascharff","download_url":"https://codeload.github.com/aurorascharff/next15-filterlist/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aurorascharff%2Fnext15-filterlist/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31744404,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T06:26:45.479Z","status":"ssl_error","status_checked_at":"2026-04-13T06:26:44.645Z","response_time":93,"last_error":"SSL_read: 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":["app-router","nextjs","progressive-enhancement","react19","responsive-design","rsc","tailwindcss"],"created_at":"2026-04-13T07:44:03.735Z","updated_at":"2026-04-13T07:44:03.832Z","avatar_url":"https://github.com/aurorascharff.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Next.js 15 Filter List\n\nAn interactive, progressively enhanced project task manager with filtering using Next.js 15 with Tailwind CSS and Prisma. It's been purposely slowed down to showcase the handling of loading state.\n\nSee `filter-provider` branch for a context API version, which batches all filters into a single state, fixing the problem of them being discarded when toggling across multiple.\n\nSee `nuqs` branch for a version using [nuqs](https://nuqs.47ng.com/) to accomplish the same thing. It's probably better to use a library, right?\n\nThis is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).\n\nThis project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.\n\n## Getting Started\n\nFirst, install the dependencies:\n\n```bash\nnpm install\n```\n\nThen, run the development server:\n\n```bash\nnpm run dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n\n## Prisma Setup\n\nYou need decide between prisma local development with `sqlite` or a real database with for example `postgresql` or `sqlserver`. Define it in the `schema.prisma` file.\n\nConsider adding a `.env` file to the root of the project and use the environment variables inside `schema.prisma` with `env(\"DATABASE_URL\")`, refer to `.env.sample`.\n\nWhen using sqlite, initialize the database with:\n\n```bash\nnpm run prisma.push\n```\n\nSeed prisma/seed.ts for initial data:\n\n```sh\nnpm run prisma.seed\n```\n\nTo view your data in the database, you can run:\n\n```bash\nnpm run prisma.studio\n```\n\nWhen using a real database with for example postgresql or sqlserver, you need to migrate the database schema with:\n\n```bash\nnpm run prisma.migrate\n```\n\nNB! The following option, used in `task.ts`, for case insensitivity is not supported nor needed with i.e sqlite:\n\n```ts\nfilter.q.toLowerCase(), mode: 'insensitive' }\n```\n\nRemove this option to make it work with sqlite.\n\n## Learn More\n\nTo learn more about Next.js, take a look at the following resources:\n\n- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.\n- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.\n\nYou can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!\n\n## Deploy on Vercel\n\nThe easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template\u0026filter=next.js\u0026utm_source=create-next-app\u0026utm_campaign=create-next-app-readme) from the creators of Next.js.\n\nCheck out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.\n\n## Clone made in TanStack Start\n\nCheck out a [TanStack Start](https://github.com/webmasterdevlin/tanstack-start-filterlist) clone of this project, made by [Devlin Duldulao](https://github.com/webmasterdevlin) 🔥\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faurorascharff%2Fnext15-filterlist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faurorascharff%2Fnext15-filterlist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faurorascharff%2Fnext15-filterlist/lists"}