{"id":21864219,"url":"https://github.com/drbarzaga/react-starter-template","last_synced_at":"2026-04-05T22:36:56.813Z","repository":{"id":209836902,"uuid":"724907569","full_name":"drbarzaga/react-starter-template","owner":"drbarzaga","description":"Setting Up React, Babel, TypeScript, Webpack, Eslint, Prettier without  npx create-react-app","archived":false,"fork":false,"pushed_at":"2023-11-29T11:19:33.000Z","size":85,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-26T05:40:10.805Z","etag":null,"topics":["babel","boilerplate","eslint","prettier","react","typescript","webpack"],"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/drbarzaga.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}},"created_at":"2023-11-29T03:06:32.000Z","updated_at":"2023-11-29T03:42:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"dd96ed40-400f-4d10-b093-0ec67c722664","html_url":"https://github.com/drbarzaga/react-starter-template","commit_stats":null,"previous_names":["drbarzaga/react-starter-template"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/drbarzaga/react-starter-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drbarzaga%2Freact-starter-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drbarzaga%2Freact-starter-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drbarzaga%2Freact-starter-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drbarzaga%2Freact-starter-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/drbarzaga","download_url":"https://codeload.github.com/drbarzaga/react-starter-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drbarzaga%2Freact-starter-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31452899,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"ssl_error","status_checked_at":"2026-04-05T21:22:51.943Z","response_time":75,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["babel","boilerplate","eslint","prettier","react","typescript","webpack"],"created_at":"2024-11-28T04:08:09.340Z","updated_at":"2026-04-05T22:36:56.372Z","avatar_url":"https://github.com/drbarzaga.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Boilerplate - React + TypeScript + Babel + Webpack + EsLint + Prettier\n\nSetting Up React, Babel, TypeScript, Webpack, Eslint, Prettier without `npx create-react-app` fallowing this [Guide](https://dev.to/rinconcamilo/setting-up-react-babel-webpack-without-create-react-app-2a1f)\n\n### Install Dependencies\n\n\u003e Before install the dependencies check the node version on `.nvmrc`, we recomend use a node version manager as `nvm`.\n\n```bash\n$ npm install\n```\n\n### Run Development Server\n\nTo run the webpack development server you can use the following command:\n\n```bash\n$ npm run start\n```\n\n### Build for Production\n\nTo build the application for production you can use the following command:\n\n\u003e This command will generate the compiled version of the application ready to deploy.\n\n```bash\n$ npm run build\n```\n\n### Run Code Checks\n\nTo run the Code checks with Eslint execute the fallowing command:\n\n\u003e Run code checks\n\n```bash\n$ npm run lint\n```\n\n\u003e Fix the problems found\n\n```bash\n$ npm run lint:fix\n```\n\n### Packages\n\n- [react](https://www.npmjs.com/package/react) - Will only have the needed functionality in order to define your React components.\n- [react-dom](https://www.npmjs.com/package/react-dom) - Serves as the entry point to the DOM and server renders for React.\n- [@babel-core](https://babeljs.io/docs/babel-core) - Babel compiler core.\n- [@babel-preset-env](https://babeljs.io/docs/babel-preset-env) - Babel preset for each environment.\n- [@babel/preset-react](https://babeljs.io/docs/babel-preset-react) - Babel preset for all React plugins.\n- [babel-loade](https://webpack.js.org/loaders/babel-loader/) - Allows transpiling JavaScript files using Babel and Webpack.\n- [webpack](https://www.npmjs.com/package/webpack) - Module bundler with the main purpose to bundle JavaScript files for the browser.\n- [webpack-cli](https://www.npmjs.com/package/webpack-cli) - Command Line Interface (to execute webpack terminal lines).\n- [webpack-dev-server](https://www.npmjs.com/package/webpack-dev-server) - Utilize webpack with a development server to provide live reloading.\n- [html-webpack-plugin](https://webpack.js.org/plugins/html-webpack-plugin/) - Simplifies creation of HTML files to serve your bundles.\n- [file-loader](https://www.npmjs.com/package/file-loader) - Resolves import/require() on a file into a url and emits the file into the output directory.\n- [css-loader](https://webpack.js.org/loaders/css-loader/) - Interprets import and url like import/require and will resolve them.\n- [style-loader](https://www.npmjs.com/package/style-loader) - Inject CSS into the DOM.\n- [typescript](https://www.npmjs.com/package/typescript) - Adds optional types to JavaScript.\n- [@types/react](https://www.npmjs.com/package/@types/react) - Type definitions for react.\n- [@types/react-dom](https://www.npmjs.com/package/@types/react-dom) - Type definitions for react-dom.\n- [@babel/preset-typescript](https://babeljs.io/docs/babel-preset-typescript#with-a-configuration-file-recommended) - Allows Babel to understand typescript.\n- [eslint](https://www.npmjs.com/package/eslint) - Is a tool to identify and report on code patterns.\n- [eslint-plugin-react](https://www.npmjs.com/package/eslint-plugin-react) - React specific linting rules for ESLint .\n- [eslint-plugin-react-hooks](https://www.npmjs.com/package/eslint-plugin-react-hooks) - Enforces the Rules of Hooks, is a part of the Hooks API for React.\n- [eslint-config-prettier](https://www.npmjs.com/package/eslint-config-prettier) - Turns off ESLint rules that would conflict with Prettier's formatting.\n- [prettier](https://www.npmjs.com/package/prettier) - An opinionated code formatter. Used to enforce a consistent style.\n- [@typescript-eslint/parser](https://www.npmjs.com/package/@typescript-eslint/parser) - ESLint parser which leverages TypeScript ESTree to allow for ESLint to lint TypeScript source code.\n- [@typescript-eslint/eslint-plugin](https://www.npmjs.com/package/@typescript-eslint/eslint-plugin) - ESLint plugin which provides lint rules for TypeScript codebases.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrbarzaga%2Freact-starter-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdrbarzaga%2Freact-starter-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrbarzaga%2Freact-starter-template/lists"}