{"id":19729436,"url":"https://github.com/benjammin4dayz/neu-react-vite","last_synced_at":"2025-04-30T01:32:01.630Z","repository":{"id":231838273,"uuid":"782535664","full_name":"benjammin4dayz/neu-react-vite","owner":"benjammin4dayz","description":"A template to kickstart your Neutralino.js apps with React, Vite, and optionally TypeScript!","archived":false,"fork":false,"pushed_at":"2024-10-28T12:11:16.000Z","size":275,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-28T15:21:48.496Z","etag":null,"topics":["boilerplate","hot-module-replacement","minimal","neutralino","neutralinojs","reactjs","template","vite"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/benjammin4dayz.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-04-05T13:45:07.000Z","updated_at":"2024-10-28T12:11:19.000Z","dependencies_parsed_at":"2024-04-08T16:46:14.442Z","dependency_job_id":"3434b469-8fe1-4f9b-92a2-cebc4ddfaad2","html_url":"https://github.com/benjammin4dayz/neu-react-vite","commit_stats":null,"previous_names":["benjammin4dayz/neu-react-vite"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benjammin4dayz%2Fneu-react-vite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benjammin4dayz%2Fneu-react-vite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benjammin4dayz%2Fneu-react-vite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benjammin4dayz%2Fneu-react-vite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/benjammin4dayz","download_url":"https://codeload.github.com/benjammin4dayz/neu-react-vite/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224193075,"owners_count":17271238,"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":["boilerplate","hot-module-replacement","minimal","neutralino","neutralinojs","reactjs","template","vite"],"created_at":"2024-11-12T00:12:11.307Z","updated_at":"2024-11-12T00:12:11.902Z","avatar_url":"https://github.com/benjammin4dayz.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# \u003cimg align=\"left\" alt=\"neu-icon\" height=\"48\" src=\"react-src/src/assets/neutralino.svg\" /\u003eneu-react-vite\u003cimg align=\"right\" alt=\"react-icon\" height=\"48\" src=\"react-src/src/assets/vite.svg\" /\u003e\u003cimg align=\"right\" alt=\"react-icon\" height=\"48\" src=\"react-src/src/assets/react.svg\" /\u003e\n\nA minimal template for building Neutralino.js apps using React and Vite.\n\n## About\n\nThis Neutralino app template features HMR _(Hot Module Replacement)_ and uses SWC _(Speedy Web Compiler)_. It can be converted to TypeScript with a \u003ca href=\"#configuration\"\u003esingle command\u003c/a\u003e!\n\n### Demo\n\nStart developing your app in _less than 30 seconds!_\n\n\u003cvideo src=\"https://github.com/benjammin4dayz/neu-react-vite/assets/42326027/cdbbc6cd-a485-42dc-b620-1c285bac8f17\"\u003e\u003c/video\u003e\n\n## Getting Started\n\nThis template abstracts the setup process by using the [`neu` CLI][neu-cli] under the hood.\n\n### Prerequisites\n\n- Node.js\n- npm\n\n### Installation\n\n1. Create a new app with `neu create`\n\n   ```bash\n   npx @neutralinojs/neu create myapp --template benjammin4dayz/neu-react-vite\n   cd myapp\n   ```\n\n\u003cdetails\u003e\n   \u003csummary\u003eAlternative Method (Expand)\u003c/summary\u003e\n\n1.  Clone the repo\n\n    ```bash\n    git clone --depth=1 https://github.com/benjammin4dayz/neu-react-vite.git\n    cd neu-react-vite\n    ```\n\n2.  Install dependencies\n\n    ```bash\n    npm run setup\n    ```\n\n    \u003c/details\u003e\n\n### Configuration\n\n- Convert this template to TypeScript\n\n  ```bash\n  node .ts-convert\n  ```\n\n## Usage\n\n- Local Development\n\n  ```bash\n  # Develop\n  npm start\n  # Build\n  npm run build\n  # Package\n  npm run build:release\n  ```\n\n  [View scripts][npm-scripts]\n\n- GitHub Actions\n\n  ```bash\n  # Build and draft a release on GitHub:\n  git tag \u003ctag_name\u003e\n  git push origin \u003ctag_name\u003e\n  ```\n\n  [View workflow][workflow-file]\n\n## Troubleshooting\n\nBefore proceeding, try refreshing the page inside your app with `F5`, `CTRL + R`, or by right-clicking and selecting `Refresh`.\n\n### Blank screen with no errors during development\n\nTry pasting this snippet in the DevTools console tab:\n\n```js\nwindow.location.href = 'http://localhost:3000';\n```\n\n\u003c!-- Links --\u003e\n\n[neu-cli]: https://neutralino.js.org/docs/cli/neu-cli\n[neu-conf]: ./neutralino.config.json\n[npm-scripts]: ./package.json\n[workflow-file]: .github/workflows/create-neutralinojs-app.yml\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenjammin4dayz%2Fneu-react-vite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenjammin4dayz%2Fneu-react-vite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenjammin4dayz%2Fneu-react-vite/lists"}