{"id":21283859,"url":"https://github.com/ryan-ahn/npm-remix-starter","last_synced_at":"2026-05-22T14:04:01.004Z","repository":{"id":240154189,"uuid":"801339976","full_name":"ryan-ahn/npm-remix-starter","owner":"ryan-ahn","description":"remix 프로젝트 시작을 위한 NPM 패키지","archived":false,"fork":false,"pushed_at":"2024-09-29T20:51:07.000Z","size":268,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-22T04:43:07.930Z","etag":null,"topics":["eslint-rules","prettier-config","remix","typescript","vite","vitest"],"latest_commit_sha":null,"homepage":"","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/ryan-ahn.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":"2024-05-16T03:33:53.000Z","updated_at":"2024-09-29T20:53:10.000Z","dependencies_parsed_at":"2024-05-19T09:22:40.949Z","dependency_job_id":"7403dd7e-689a-42d8-8465-d743c5cea7da","html_url":"https://github.com/ryan-ahn/npm-remix-starter","commit_stats":null,"previous_names":["ryan-ahn/npm-remix-starter"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryan-ahn%2Fnpm-remix-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryan-ahn%2Fnpm-remix-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryan-ahn%2Fnpm-remix-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryan-ahn%2Fnpm-remix-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ryan-ahn","download_url":"https://codeload.github.com/ryan-ahn/npm-remix-starter/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243746130,"owners_count":20341203,"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":["eslint-rules","prettier-config","remix","typescript","vite","vitest"],"created_at":"2024-11-21T11:12:43.493Z","updated_at":"2026-05-22T14:03:55.970Z","avatar_url":"https://github.com/ryan-ahn.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ryan's Remix Awesome Starter\n\n![Author](https://img.shields.io/badge/Author-ryan-orange.svg)\n![License](https://img.shields.io/badge/License-MIT-blue.svg)\n![Last Commit](https://img.shields.io/github/last-commit/ryan-ahn/npm-remix-starter)\n\n## Features\n\n- [x] ⚙️\u0026nbsp;\u0026nbsp;Small \u0026 Fast Bundler (Vite)\n- [x] 🗝️\u0026nbsp;\u0026nbsp;Typed Programming (TypeScript)\n- [x] 🗄️\u0026nbsp;\u0026nbsp;Database Design (Prisma)\n- [x] 📙\u0026nbsp;\u0026nbsp;Strict Codebase (ESLint \u0026 Prettier)\n- [x] 🧪\u0026nbsp;\u0026nbsp;Component Test Code (Vitest)\n- [x] 📊\u0026nbsp;\u0026nbsp;Test Coverage Measurement (Vitest)\n- [x] 🧵\u0026nbsp;\u0026nbsp;Built-in Component \u0026 Layouts\n- [x] ✨\u0026nbsp;\u0026nbsp;Reset Style Setup\n- [x] ⚡️\u0026nbsp;\u0026nbsp;Mixin Style Setup\n- [x] 📍\u0026nbsp;\u0026nbsp;Absolute Paths\n- [x] 📫\u0026nbsp;\u0026nbsp;Page SEO\n\n## Frameworks\n\n- **Bundler** : Vite\n- **SSR** : Remix\n- **Core** : React\n- **Store** : Zustand\n- **Test** : Vitest\n- **Style** : Emotion\n\n## Code Pattern\n\n- **Static(public)**\n- **Root(App)** \u003cbr/\u003e\n- ⎣\u0026nbsp;**constants** - static resource \u003cbr/\u003e\n- ⎣\u0026nbsp;**components** - atomic stateless components \u003cbr/\u003e\n- ⎣\u0026nbsp;**containers** - stateful components \u003cbr/\u003e\n- ⎣\u0026nbsp;**interface** - interfaces \u003cbr/\u003e\n- ⎣\u0026nbsp;**layouts** - layouts \u003cbr/\u003e\n- ⎣\u0026nbsp;**libs** - store, hooks, utils\u003cbr/\u003e\n- ⎣\u0026nbsp;**routes** - page routes\u003cbr/\u003e\n- ⎣\u0026nbsp;**styles** - style set\u003cbr/\u003e\n\n## Getting Started\n\n### 1) Installation\n\n```shell\nnpx remix-starter my-project\ncd my-project\n```\n\n### 2) Run Project\n\n```shell\nnpm run dev\n```\n\n### 3) Run Deploy\n\n```shell\nnpm run build\n```\n\n## Using with Mixin\n\n```javascript\n// use mixin\nimport {\n  flexSet,\n  boxSet,\n  colorSet,\n  backgroundSet,\n  fontSet,\n} from \"@styles/mixin\";\n\nconst Style = styled.div`\n  ${theme.flexSet(\"center\", \"center\", \"column\")};\n  ${theme.boxSet(\"00px\", \"00px\", \"00px\")};\n  ${theme.colorSet(\"white\", \"black\")};\n  ${theme.backgroundSet(\"URL\", \"contain\")};\n  ${theme.fontSet(00, 000, 00)};\n`;\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryan-ahn%2Fnpm-remix-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fryan-ahn%2Fnpm-remix-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryan-ahn%2Fnpm-remix-starter/lists"}