{"id":18331586,"url":"https://github.com/yagolopez/react-parcel","last_synced_at":"2026-04-26T22:31:43.348Z","repository":{"id":82896608,"uuid":"117736616","full_name":"YagoLopez/react-parcel","owner":"YagoLopez","description":":rocket: React + Typescript + Parcel Starter Project","archived":false,"fork":false,"pushed_at":"2020-05-30T19:55:02.000Z","size":2149,"stargazers_count":3,"open_issues_count":8,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-09T18:54:16.737Z","etag":null,"topics":["boilerplate","parcel","parcel-bundler","react","starter","typescript"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/YagoLopez.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":"2018-01-16T20:17:47.000Z","updated_at":"2022-04-21T02:19:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"1442bed4-daab-49db-a281-59e898b6687b","html_url":"https://github.com/YagoLopez/react-parcel","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/YagoLopez/react-parcel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YagoLopez%2Freact-parcel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YagoLopez%2Freact-parcel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YagoLopez%2Freact-parcel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YagoLopez%2Freact-parcel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YagoLopez","download_url":"https://codeload.github.com/YagoLopez/react-parcel/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YagoLopez%2Freact-parcel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32315711,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T21:09:39.134Z","status":"ssl_error","status_checked_at":"2026-04-26T21:09:21.240Z","response_time":129,"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":["boilerplate","parcel","parcel-bundler","react","starter","typescript"],"created_at":"2024-11-05T19:33:37.855Z","updated_at":"2026-04-26T22:31:43.326Z","avatar_url":"https://github.com/YagoLopez.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://travis-ci.org/YagoLopez/react-parcel\" target=\"_blank\"\u003e\n    \u003cimg src=\"https://travis-ci.org/YagoLopez/react-parcel.svg?branch=master\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://codeclimate.com/github/YagoLopez/react-parcel/maintainability\"\u003e\n    \u003cimg src=\"https://api.codeclimate.com/v1/badges/53e118fb3a91f44acb2c/maintainability\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://greenkeeper.io/\"\u003e\n    \u003cimg src=\"https://badges.greenkeeper.io/YagoLopez/react-parcel.svg\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"src/components/puzzle.svg\" width=\"250\"/\u003e\n\u003c/p\u003e\n\n\u003ch1\u003e\u003cp align=\"center\"\u003eReact + Parcel + TypeScript\u003c/p\u003e\u003c/h1\u003e\n\n- Forked from [this](https://github.com/emaren84/ts-react-parcel) repository.\n- [DEMO](https://yagolopez.js.org/react-parcel/dist/)\n\n\n- Zero configuration\n- Fast initial build times\n- Fast sucesive rebuild times\n- Hot reload supported by default\n- Dynamic imports supported by default\n- Test configuration using Jest + Enzyme\n- File proccessors for Jest (`css|less|jpg|jpeg|png|gif|eot|otf|webp|svg`) etc.\n- React + ReactDOM (ver.16)\n- Parcel bundler\n\n## Setup\n\n- Clone or download the repository\n- If not installed, install **yarn** package manager\n- Go to project folder and run in command line\n\n```shell\n$ yarn\n```\n\n## Run\n\n```shell\n$ yarn develop\n```\n\nExecute the command and you can run \u0026 test the application on `localhost:1234` in the browser.\n\n## Build\n\n```shell\n$ yarn build\n```\n\nThe default output directory is `/dist`. You can change the destination wherever you want.\n\n```javascript\n// package.json\n// ...\n\"scripts\": {\n  // ...\n  \"build\": \"parcel build ./src/index.html -d YOUR_OUTPUT_DIR --public-url ./\" // \u003c- Change here\n}\n// ...\n```\n\n## Test\n\n```shell\n$ yarn test        # run tests suites once\n$ yarn test:watch  # watch mode\n$ yarn coverage    # code coverage\n```\n\n- Config tests in `config` folder\n\n- You have to create `__tests__` directory at the same location of files which you want to test.\n\n- Test file's name should be `SOURCE.test.ts/tsx/js` or `SOURCE.spec.ts/tsx/js`.\n\n  ​\n\n  \u003cp align=\"center\"\u003e\u003ca href=\"#\"\u003eBack to top :arrow_up:\u003c/p\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyagolopez%2Freact-parcel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyagolopez%2Freact-parcel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyagolopez%2Freact-parcel/lists"}