{"id":27733952,"url":"https://github.com/pixel-point/remix-starter","last_synced_at":"2025-06-11T22:32:23.657Z","repository":{"id":100607306,"uuid":"437659403","full_name":"pixel-point/remix-starter","owner":"pixel-point","description":null,"archived":false,"fork":false,"pushed_at":"2021-12-13T11:40:48.000Z","size":173,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-06-01T20:53:04.434Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/pixel-point.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}},"created_at":"2021-12-12T21:22:58.000Z","updated_at":"2021-12-28T18:23:21.000Z","dependencies_parsed_at":"2023-03-10T22:30:39.022Z","dependency_job_id":null,"html_url":"https://github.com/pixel-point/remix-starter","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/pixel-point/remix-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pixel-point%2Fremix-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pixel-point%2Fremix-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pixel-point%2Fremix-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pixel-point%2Fremix-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pixel-point","download_url":"https://codeload.github.com/pixel-point/remix-starter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pixel-point%2Fremix-starter/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259354877,"owners_count":22844942,"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":[],"created_at":"2025-04-28T13:01:28.808Z","updated_at":"2025-06-11T22:32:23.642Z","avatar_url":"https://github.com/pixel-point.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Welcome to Remix Starter\n\n## Table of Contents\n\n- [Remix Docs](https://remix.run/docs)\n- [Getting Started](#getting-started)\n- [Usage](#usage)\n  - [Run the website](#run-the-website)\n  - [Build the website](#build-the-website)\n  - [Run the built website](#run-the-built-website)\n- [Project Structure](#project-structure)\n- [Code Style](#code-style)\n  - [ESLint](#eslint)\n  - [Prettier](#prettier)\n  - [VS Code](#vs-code)\n\n## Getting Started\n\n1. Clone this repository or hit \"Use this template\" button\n\n```bash\ngit clone git@github.com:pixel-point/remix-starter.git\n```\n\n2. Install dependencies\n\n```bash\nnpm install\n```\n\n3. Fill environment variables\n\n```bash\ncp .env.example .env\n```\n\n## Usage\n\n### Run the website\n\n```bash\nnpm run dev\n```\n\n### Build the website\n\n```bash\nnpm run build\n```\n\n### Run the built website\n\n```bash\nnpm start\n```\n\n## Project Structure\n\n```text\n├── app\n│   ├── components\n│   │  ├── pages — React components that are being used specifically on a certain page\n│   │  └── shared — React components that are being used across the whole website\n│   ├── hooks\n│   ├── images\n│   ├── routes –  Remix uses the files in this directory to create the URL routes for your app based on the name of the files\n│   ├── styles\n│   │  ├── dist – Folder with compiled CSS files\n│   │  ├── main.css – Main CSS files where Tailwind imports\n│   ├── utils\n│   └── root.jsx — Root component for application. You render the \u003chtml\u003e element here\n├── public – Static assets storage\n```\n[Read more about Remix project structure](https://remix.run/docs/en/v1/tutorials/jokes#explore-the-project-structure)\n\n## Code Style\n\n### ESLint\n\n[ESLint](https://eslint.org/) helps find and fix code style issues and force developers to follow same rules. Current configuration is based on [Airbnb style guide](https://github.com/airbnb/javascript).\n\nAdditional commands:\n\n```bash\nnpm run lint\n```\n\nRun it to check the current status of eslint issues across project.\n\n```bash\nnpm run lint:fix\n```\n\nRun it to fix all possible issues.\n\n### Prettier\n\n[Prettier](https://prettier.io/) helps to format code based on defined rules. [Difference between Prettier and ESLint](https://prettier.io/docs/en/comparison.html).\n\nAdditional commands:\n\n```bash\nnpm run format\n```\n\nRun it to format all files across the project.\n\n### VS Code\n\nFollowing extensions required to simplify the process of keeping the same code style across the project:\n\n- [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint)\n- [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode)\n\nAfter installation enable \"ESLint on save\" by adding to your VS Code settings.json the following line:\n\n```json\n\"editor.codeActionsOnSave\": {\n    \"source.fixAll.eslint\": true\n}\n```\n\nYou can navigate to settings.json by using Command Pallete (CMD+Shift+P) and then type \"Open settings.json\".\n\nTo enable Prettier go to Preferences -\u003e Settings -\u003e type \"Format\". Then check that you have esbenp.prettier-vscode as default formatter, and also enable \"Format On Save\".\n\nReload VS Code and auto-format will work for you.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpixel-point%2Fremix-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpixel-point%2Fremix-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpixel-point%2Fremix-starter/lists"}