{"id":13788942,"url":"https://github.com/lukeed/inferno-starter","last_synced_at":"2025-10-09T18:24:54.660Z","repository":{"id":51303533,"uuid":"78061686","full_name":"lukeed/inferno-starter","owner":"lukeed","description":"Webpack2 boilerplate for building SPA / PWA / offline front-end apps with Inferno.js","archived":false,"fork":false,"pushed_at":"2018-02-17T16:10:14.000Z","size":402,"stargazers_count":41,"open_issues_count":2,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-10T11:06:03.879Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://inferno-starter.now.sh/","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/lukeed.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}},"created_at":"2017-01-04T23:34:03.000Z","updated_at":"2018-10-31T04:39:37.000Z","dependencies_parsed_at":"2022-09-10T17:51:59.814Z","dependency_job_id":null,"html_url":"https://github.com/lukeed/inferno-starter","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/lukeed/inferno-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukeed%2Finferno-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukeed%2Finferno-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukeed%2Finferno-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukeed%2Finferno-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lukeed","download_url":"https://codeload.github.com/lukeed/inferno-starter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukeed%2Finferno-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279001940,"owners_count":26083226,"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","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"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-08-03T21:00:56.251Z","updated_at":"2025-10-09T18:24:54.624Z","avatar_url":"https://github.com/lukeed.png","language":"JavaScript","funding_links":[],"categories":["Summary"],"sub_categories":["Boilerplates"],"readme":"# inferno-starter\n\n\u003e Webpack2 boilerplate for building SPA / PWA / offline front-end apps with [Inferno](https://github.com/infernojs/inferno) :fire:\n\nUsing `inferno-starter` will kickstart your next application! :100: It is designed to fit the \"90% use-case\" for those who want to build offline-first web apps (see [features](#features) below).\n\n\u003e :triangular_flag_on_post: **Important:** This is meant for _client-side_ apps only; there is **no support** included for universal / server-side rendering. I plan to release my own SSR kit shortly, but in the meantime you may [use this](https://github.com/nightwolfz/inferno-starter).\n\n**Please note:** Boilerplate _does not_ incorporate the latest [\"css-in-js\" or \"css modules\" technique](https://github.com/MicheleBertoli/css-in-js). Instead, the more traditional approach is taken, wherein `styles` and `scripts` are kept separate. That said, you may **certainly and easily** take that route if desired. :white_check_mark:\n\n---\n\u003cp align=\"center\"\u003e:warning: Boilerplate \u0026 commands will evolve as my own development process does. :warning:\u003c/p\u003e\n---\n\n## Install\n\n```sh\ngit clone https://github.com/lukeed/inferno-starter\nnpm install\nnpm start\n```\n\n\u003e :exclamation: **Pro Tip:** Use [Yarn](https://yarnpkg.com/) to install dependencies 3x faster than NPM!\n\n## Features\n\n* Offline Caching (via `serviceWorker`)\n* SASS \u0026 Autoprefixer\n* Asset Versioning (aka \"cache-busting\")\n* ES2015 (ES6) and ES2016 (ES7) support\n* Webpack Bundle Analysis (see [dashboard](#dashboard))\n* Hot Module Replacement (HMR) for all files\n* [Lighthouse](https://github.com/GoogleChrome/lighthouse) certified\n\n  ![lightouse](src/static/img/lighthouse.jpg)\n\n## Development\n\n### Commands\n\nAny of the following commands can (and should :wink:) be run from the command line.\n\n\u003e If using [Yarn](https://yarnpkg.com/), all instances of `npm` can be replaced with `yarn`. :ok_hand:\n\n#### build\n\n```\n$ npm run build\n```\n\nCompiles all files. Output is sent to the `dist` directory.\n\n#### start\n\n```\n$ npm start\n```\n\nRuns your application (from the `dist` directory) in the browser.\n\n#### watch\n\n```\n$ npm run watch\n```\n\nLike [`start`](#start), but will auto-compile \u0026 auto-reload the server after any file changes within the `src` directory.\n\n### Dashboard\n\nWith [`webpack-dashboard`](https://github.com/FormidableLabs/webpack-dashboard), it's much easier to see what's happening inside your bundles. In addition to de-cluttering your `webpack-dev-server` log, you can quickly make sense of your bundles' `import`s and sizes.\n\n![dashboard](src/static/img/dev-dash.jpg)\n\nThe dashboard is meant to be interactive (scrollable). If you are having issues, please see the author's note:\n\n\u003e ***OS X Terminal.app users:*** Make sure that **View → Allow Mouse Reporting** is enabled, otherwise scrolling through logs and modules won't work. If your version of Terminal.app doesn't have this feature, you may want to check out an alternative such as [iTerm2](https://www.iterm2.com/index.html).\n\n## License\n\nMIT © [Luke Edwards](https://lukeed.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flukeed%2Finferno-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flukeed%2Finferno-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flukeed%2Finferno-starter/lists"}