{"id":22727307,"url":"https://github.com/noviel/modern-frontend-starter","last_synced_at":"2026-06-25T08:31:33.726Z","repository":{"id":98890314,"uuid":"125830226","full_name":"Noviel/modern-frontend-starter","owner":"Noviel","description":"Modern frontend development environment with maximum comfort","archived":false,"fork":false,"pushed_at":"2018-04-05T15:09:12.000Z","size":401,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-30T00:25:59.309Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Noviel.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-03-19T09:05:49.000Z","updated_at":"2018-04-05T15:09:13.000Z","dependencies_parsed_at":"2023-03-05T01:30:34.988Z","dependency_job_id":null,"html_url":"https://github.com/Noviel/modern-frontend-starter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Noviel/modern-frontend-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Noviel%2Fmodern-frontend-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Noviel%2Fmodern-frontend-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Noviel%2Fmodern-frontend-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Noviel%2Fmodern-frontend-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Noviel","download_url":"https://codeload.github.com/Noviel/modern-frontend-starter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Noviel%2Fmodern-frontend-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34767542,"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-25T02:00:05.521Z","response_time":101,"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":"2024-12-10T17:11:42.129Z","updated_at":"2026-06-25T08:31:33.665Z","avatar_url":"https://github.com/Noviel.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Modern Frontend Starter\n\nMFS is a minimalistic modern development environment for frontend.\n\n- 10/10 developer experience\n- Start hacking in a blink of an eye\n- Easily extendable\n- No tedious tools configuration\n- Easily configurable if you want to\n- Use SVG, pictures, fonts, whatever you want\n- Full-featured React support of course!\n\n## Let me start please\n\nCopy paste these lines into your terminal, ok?\n```sh\ngit clone https://github.com/Noviel/modern-frontend-starter\ncd modern-frontend-starter\ngit remote rm origin\nyarn install\nyarn dev\n```\n\n### NPM scripts\n\n`yarn dev` - launch hot-reloading webpack-dev-server\n\n`yarn build` - build assets for production\n\n`yarn serve` - serve locally built assets\n\n## Tell me the details\n\n- `eslint` and `prettier` = linting and formatting\n- `webpack` and stuff = building, bundling and stuff\n\nGo to `webpack.config.js` in the root directory. You can see that MFS is powered by [webpack-features](https://github.com/Noviel/webpack-features). So check it out if you wanna some tweaks on webpack's config. You can easily turn on support of React, Flow, TypeScript, Scss, less and other cool stuff.\n\n## I am really wanna React, TypeScript, Scss, less and other cool stuff\n\nOk, i see you. This project is a boilerplate, not CLI-tool (for now at least), so time to dirty your hands. You need to manually add corresponding option to `webpack.config.js` and sometimes install additional packages.\n\n### React\n\n```sh\nyarn add react react-dom\n```\n\nwebpack.config.js:\n\n```javascript\nconst { react } = require('webpack-features');\n\nmodule.exports = react();\n```\n\n### CSS Modules\n\nIs enabled by default for `*.modules.{css|scss|less}` files.\n\n### Flow\n\n```sh\nyarn add flow-bin --dev\n```\nwebpack.config.js:\n```javascript\nconst { base } = require('webpack-features');\n\nmodule.exports = base({\n  types: 'flow',\n});\n```\n\n### TypeScript\n\n```sh\nyarn add typescript --dev\n```\nwebpack.config.js:\n```javascript\nconst { base } = require('webpack-features');\n\nmodule.exports = base({\n  types: 'typescript',\n});\n```\n\n### Scss\n\n```sh\nyarn add node-sass sass-loader --dev\n```\nwebpack.config.js:\n```javascript\nconst { base } = require('webpack-features');\n\nmodule.exports = base({\n  cssPreprocessors: ['scss'],\n});\n```\n\n### less\n\n```sh\nyarn add less less-loader --dev\n```\nwebpack.config.js:\n```javascript\nconst { base } = require('webpack-features');\n\nmodule.exports = base({\n  cssPreprocessors: ['less'],\n});\n```\n\n### Other stuff\nCheckout [webpack-features](https://github.com/Noviel/webpack-features) documentation. You can easily extend configuration with whatever you want.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnoviel%2Fmodern-frontend-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnoviel%2Fmodern-frontend-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnoviel%2Fmodern-frontend-starter/lists"}