{"id":26720941,"url":"https://github.com/wenpengfei/parcel-typescript-react-boilerplate","last_synced_at":"2025-04-14T05:51:51.760Z","repository":{"id":72709621,"uuid":"117761085","full_name":"wenpengfei/parcel-typescript-react-boilerplate","owner":"wenpengfei","description":"parcel-typescript-react-boilerplate","archived":false,"fork":false,"pushed_at":"2018-06-07T06:50:02.000Z","size":81,"stargazers_count":36,"open_issues_count":0,"forks_count":6,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-27T19:43:01.994Z","etag":null,"topics":["boilerplate","mobx","mobx-react","parcel","react","react-router","typescript"],"latest_commit_sha":null,"homepage":null,"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/wenpengfei.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-17T00:37:03.000Z","updated_at":"2023-12-05T06:44:04.000Z","dependencies_parsed_at":"2023-03-03T00:45:42.499Z","dependency_job_id":null,"html_url":"https://github.com/wenpengfei/parcel-typescript-react-boilerplate","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wenpengfei%2Fparcel-typescript-react-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wenpengfei%2Fparcel-typescript-react-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wenpengfei%2Fparcel-typescript-react-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wenpengfei%2Fparcel-typescript-react-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wenpengfei","download_url":"https://codeload.github.com/wenpengfei/parcel-typescript-react-boilerplate/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248830388,"owners_count":21168272,"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","mobx","mobx-react","parcel","react","react-router","typescript"],"created_at":"2025-03-27T19:35:06.244Z","updated_at":"2025-04-14T05:51:51.751Z","avatar_url":"https://github.com/wenpengfei.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# parcel-typescript-react-boilerplate\n\n## Setup\n\n```\ngit clone git@github.com:wenpengfei/parcel-typescript-react-boilerplate.git\ncd parcel-typescript-react-boilerplate\nyarn\nnpm start\n```\n\n\n## Tech Stack\n\n### Core\n\n* [typescript](https://www.typescriptlang.org/)\n* [react@v16](https://reactjs.org/)\n* [react-router@v4](https://reacttraining.com/react-router/)\n* [mobx](https://mobx.js.org/index.html)\n* [mobx-react](https://github.com/mobxjs/mobx-react)\n\n### Utils\n\n* [parcel](https://parceljs.org)\n* [tslint](https://palantir.github.io/tslint/)\n* [stylelint](https://stylelint.io/)\n\n## Structure\n\n```\n├── src\n│   ├── app.scss\n│   ├── app.tsx                      # 入口文件\n│   ├── pages.tsx                    # 模板页\n│   ├── routes.ts                    # 菜单\n│   ├── assets                       # 资源文件\n│   │   └── logo.svg\n│   ├── components                   # 组件目录\n│   │   ├── content-container        # 页面container\n│   │   │   └── index.tsx   \n│   │   ├── index.tsx                # components 入口文件\n│   │   ├── layout                   # 布局页\n│   │   │   ├── index.scss\n│   │   │   └── index.tsx\n│   │   ├── login-form               # 登陆组件\n│   │   │   ├── index.scss\n│   │   │   └── index.tsx\n│   │   └── router-link\n│   │       └── index.tsx\n│   ├── service                      # api\n│   │   ├── base.ts\n│   │   ├── index.ts                 # api 入口文件\n│   │   └── user\n│   │       └── index.ts\n│   ├── stores                       # mobx store\n│   │   ├── app\n│   │   │   └── index.ts\n│   │   ├── base.ts\n│   │   ├── index.ts                 # store 入口文件 \n│   │   ├── member\n│   │   │   └── index.ts\n│   │   └── user\n│   │       └── index.ts\n│   ├── utils                        # 工具类\n│   │   ├── auth.ts\n│   │   ├── fetch.ts\n│   │   ├── index.ts                 # 工具类入口文件\n│   │   └── validator.ts\n│   └── views                        # 页面\n│       ├── index.ts\n│       ├── login\n│       │   └── index.tsx\n│       ├── member\n│       │   └── index.tsx\n│       ├── not-found\n│       │   └── index.tsx\n│       └── user\n│           ├── add.tsx\n│           ├── edit.tsx\n│           ├── form.tsx\n│           ├── index.tsx\n│           ├── list.tsx\n│           └── table.tsx\n├── index.html\n├── tsconfig.json\n├── tslint.json\n├── yarn-error.log\n└── yarn.lock\n├── README.md\n├── package.json\n```\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwenpengfei%2Fparcel-typescript-react-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwenpengfei%2Fparcel-typescript-react-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwenpengfei%2Fparcel-typescript-react-boilerplate/lists"}