{"id":25813779,"url":"https://github.com/formtrix/moz-todo-react","last_synced_at":"2026-06-15T07:34:23.987Z","repository":{"id":269495939,"uuid":"907590772","full_name":"Formtrix/moz-todo-react","owner":"Formtrix","description":"React","archived":false,"fork":false,"pushed_at":"2025-02-16T10:36:13.000Z","size":151,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-25T04:32:09.414Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/Formtrix.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-12-24T00:13:50.000Z","updated_at":"2025-02-16T11:39:02.000Z","dependencies_parsed_at":"2024-12-24T01:36:06.045Z","dependency_job_id":"031ff348-688c-4021-aa9e-f4325d004979","html_url":"https://github.com/Formtrix/moz-todo-react","commit_stats":null,"previous_names":["imetalh/moz-todo-react","formtrix/moz-todo-react"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Formtrix/moz-todo-react","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Formtrix%2Fmoz-todo-react","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Formtrix%2Fmoz-todo-react/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Formtrix%2Fmoz-todo-react/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Formtrix%2Fmoz-todo-react/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Formtrix","download_url":"https://codeload.github.com/Formtrix/moz-todo-react/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Formtrix%2Fmoz-todo-react/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34353193,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-02-28T02:50:08.235Z","updated_at":"2026-06-15T07:34:23.974Z","avatar_url":"https://github.com/Formtrix.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# React + Vite\n\nLearning React and JavaScript core\n\nIn this project:\n\nReact was powered by Vite with HMR and some ESLint rules.\n\nCurrently, two official plugins were used:\n\n- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh\n- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh\n\nApp UI sneak peek!\n\n- [UI ](./doc/images/todo.pdf)\n- [Screen](./doc/images/todo0.pdf)\n\n##### Want to run the app? Let's go\n\n#### Run the app\n\n_Before setting up and running the app, I recommend getting conformtable with JSX syntax for react apps._\n\nTypical JSX Syntax\n\n```json\nconst heading = \u003ch1\u003eKeny Kit Developer Network\u003c/h1\u003e;\n```\n\nWhat we will need and what you should know.\n\n- Vite: this project was generated from Vite's standard React template, **Create React App** command has been deprecated by React team.\n  [Vite](https://vite.dev/) is a modern front-end build tool.\n- Node: before we can use Vite, we need to have **Node** installed.\n  As of Vite 5.0, at least [Node](https://nodejs.org/en/download) version 18 or later is needed, and latest Node (LTS) is fine.\n  Install and check [Node](https://nodejs.org/en/download) version\n\n  ```zsh\n  node -v\n  ```\n\n  It should return a version number for confirmation of successful install, this also installs **NPM**.\n\n  After successful Node installation, we can use the Node Package Manager(NPM) to create fresh project from Vite's React Template.\n  [NPM](https://www.npmjs.com/) has Create command ( [npm init](https://docs.npmjs.com/cli/v11/commands/npm-init) ) that we can use to create new projects from templates.\n  To test **npm create** in a terminal `cd` to a local directory where the app will live locally, then run.\n\n  ```zsh\n  npm create vite@latest  -- --template react\n  ```\n\n  This will create new React app with Vite's support; however, **we are not creating new app**, we just want to run the one in this repo.\n  So, clone this repo with `git clone https://github.com/user/repo.git`, for example\n\n  ```zsh\n  git clone https://github.com/octocat/Hello-World.git\n  ```\n\n  Down to a local directory, `cd` to the root of the app, and run\n\n  ```zsh\n  npm run dev -- --open --port 3000\n  ```\n\n  If you run into error, check\n\n  - Node Version\n  - If on Windows, may need WSL\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fformtrix%2Fmoz-todo-react","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fformtrix%2Fmoz-todo-react","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fformtrix%2Fmoz-todo-react/lists"}