{"id":17781607,"url":"https://github.com/evrendev/webpack-starter","last_synced_at":"2026-04-09T23:02:16.149Z","repository":{"id":259415481,"uuid":"877814009","full_name":"evrendev/webpack-starter","owner":"evrendev","description":"This repository is a boilerplate project setup for modern web development using Webpack. It includes configurations for Babel, ESLint, Prettier, and SCSS, providing a solid foundation for building scalable and maintainable web applications.","archived":false,"fork":false,"pushed_at":"2024-10-24T16:30:40.000Z","size":19,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-25T07:31:08.844Z","etag":null,"topics":["babel","boilerplate","eslint","javascript","live-server","prettier","scss","webpack"],"latest_commit_sha":null,"homepage":"","language":"SCSS","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/evrendev.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":"2024-10-24T09:37:01.000Z","updated_at":"2024-10-24T16:30:45.000Z","dependencies_parsed_at":"2024-10-25T07:31:54.273Z","dependency_job_id":"e697b184-87ce-4c28-ba8b-bdc86114f975","html_url":"https://github.com/evrendev/webpack-starter","commit_stats":null,"previous_names":["evrendev/webpack-starter"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evrendev%2Fwebpack-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evrendev%2Fwebpack-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evrendev%2Fwebpack-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evrendev%2Fwebpack-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/evrendev","download_url":"https://codeload.github.com/evrendev/webpack-starter/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246706002,"owners_count":20820783,"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":["babel","boilerplate","eslint","javascript","live-server","prettier","scss","webpack"],"created_at":"2024-10-27T04:03:41.712Z","updated_at":"2026-04-09T23:02:16.078Z","avatar_url":"https://github.com/evrendev.png","language":"SCSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Webpack Starter\n\nThis repository is a boilerplate project setup for modern web development using Webpack. It includes configurations for Babel, ESLint, Prettier, and SCSS, providing a solid foundation for building scalable and maintainable web applications.\n\n# Features\n\n- [Webpack]: Module bundler for JavaScript, CSS, and other assets.\n- [Babel]: JavaScript compiler to use the latest JavaScript features.\n- [ESLint]: Linter for identifying and fixing problems in JavaScript code.\n- [Prettier]: Code formatter to ensure consistent code style.\n- [SCSS]: CSS preprocessor for writing more maintainable and scalable styles.\n- [Dotenv]: Environment variable management for different environments (development, production).\n- [Live Server]: Development server with live reloading.\n\n## Project Structure\n\n```bash\n.\n├── .babelrc                   # Babel configuration file\n├── .env                       # Environment variables file\n├── .env.development           # Development-specific environment variables\n├── .env.production            # Production-specific environment variables\n├── .eslintrc                  # ESLint configuration file\n├── .gitignore                 # Git ignore rules\n├── .prettierrc                # Prettier configuration file\n├── .vscode/                   # VSCode workspace settings\n│   └── settings.json          # VSCode settings file\n├── eslint.config.mjs          # ESLint module configuration\n├── index.html                 # Main HTML file\n├── package.json               # Project dependencies and scripts\n├── README.md                  # Project documentation\n├── src/                       # Source files\n│   ├── css/                   # Stylesheets (SCSS)\n│   │   ├── _base.scss         # Base styles\n│   │   ├── _reset.scss        # CSS reset styles\n│   │   ├── _utilities.scss    # Utility styles\n│   │   ├── _variables.scss    # SCSS variables\n│   │   └── style.scss         # Main stylesheet\n│   └── js/                    # JavaScript files\n│       └── index.js           # Main JavaScript file\n└── webpack.config.js          # Webpack configuration file\n```\n\n## Getting Started\n\n### Prerequisites\n\nMake sure you have the following installed:\n\n- [Node.js](https://nodejs.org/)\n- [npm](https://www.npmjs.com/)\n\n### Installation\n\n1. Clone the repository:\n   ```sh\n   git clone https://github.com/evrendev/webpack-starter\n   ```\n2. Navigate to the project directory:\n   ```sh\n   cd webpack-starter\n   ```\n3. Install the dependencies:\n   ```sh\n   npm install\n   ```\n\n### Development\n\nTo start the development server, run:\n\n```sh\nnpm run start:dev\n```\n\nThis will start a local server and open the project in your default web browser.\n\n### Building\n\nTo build the project for production, run:\n\n```sh\nnpm run build:prod\n```\n\nThe built files will be output to the `dist` directory.\n\n## Project Configuration\n\n### Babel\n\nBabel is configured in the [`.babelrc`](.babelrc) file.\n\n### Environment Variables\n\nEnvironment variables are managed using `.env` files:\n\n- [`.env`](.env)\n- [`.env.development`](.env.development)\n- [`.env.production`](.env.production)\n\n### ESLint\n\nESLint is configured in the [`.eslintrc`](.eslintrc) file.\n\n### Prettier\n\nPrettier is configured in the [`.prettierrc`](.prettierrc) file.\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevrendev%2Fwebpack-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fevrendev%2Fwebpack-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevrendev%2Fwebpack-starter/lists"}