{"id":18473486,"url":"https://github.com/werner/madison-elm","last_synced_at":"2025-10-07T06:41:31.153Z","repository":{"id":143392380,"uuid":"79682906","full_name":"werner/madison-elm","owner":"werner","description":null,"archived":false,"fork":false,"pushed_at":"2017-03-13T21:10:23.000Z","size":195,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-13T13:03:59.544Z","etag":null,"topics":["elm","elm-architecture","elm-lang"],"latest_commit_sha":null,"homepage":null,"language":"Elm","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/werner.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":"2017-01-22T00:45:17.000Z","updated_at":"2017-02-14T20:07:30.000Z","dependencies_parsed_at":"2024-01-19T13:02:03.083Z","dependency_job_id":null,"html_url":"https://github.com/werner/madison-elm","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/werner/madison-elm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/werner%2Fmadison-elm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/werner%2Fmadison-elm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/werner%2Fmadison-elm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/werner%2Fmadison-elm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/werner","download_url":"https://codeload.github.com/werner/madison-elm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/werner%2Fmadison-elm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278734435,"owners_count":26036404,"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-07T02:00:06.786Z","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":["elm","elm-architecture","elm-lang"],"created_at":"2024-11-06T10:25:13.922Z","updated_at":"2025-10-07T06:41:31.126Z","avatar_url":"https://github.com/werner.png","language":"Elm","funding_links":[],"categories":[],"sub_categories":[],"readme":"# elm-webpack-starter\n\nA simple Webpack setup for writing [Elm](http://elm-lang.org/) apps:\n\n* Dev server with live reloading, HMR\n* Support for CSS/SCSS (with Autoprefixer), image assets\n* Bootstrap 3.3+ (Sass version)\n* Bundling and minification for deployment\n* Basic app scaffold, using `Html.beginnerProgram`\n* A snippet of example code to get you started!\n\n\n### Install:\nClone this repo into a new project folder, e.g. `my-elm-project`:\n```\ngit clone https://github.com/moarwick/elm-webpack-starter my-elm-project\ncd my-elm-project\n```\n\nRe-initialize the project folder as your own repo:\n```\nrm -rf .git\ngit init\ngit add .\ngit commit -m 'first commit'\n```\n\nInstall all dependencies using the handy `reinstall` script:\n```\nnpm run reinstall\n```\n*This does a clean (re)install of all npm and elm packages, plus a global elm install.*\n\n\n### Serve locally:\n```\nnpm start\n```\n* Access app at `http://localhost:8080/`\n* Get coding! The entry point file is `src/elm/Main.elm`\n* Browser will refresh automatically on any file changes..\n\n\n### Build \u0026 bundle for prod:\n```\nnpm run build\n```\n\n* Files are saved into the `/dist` folder\n* To check it, open `dist/index.html`\n\n\n### Changelog\n\n**Ver 0.8.0**\n* Update to Elm 0.18, use `debug=true` on webpack loader (PR by [douglascorrea](https://github.com/moarwick/elm-webpack-starter/pull/33))\n* Add a script for one-step installs\n* Update to latest packages\n\n**Ver 0.7.1**\n* Fix favicon issues, per [Issue 30](https://github.com/moarwick/elm-webpack-starter/issues/30)\n\n**Ver 0.7.0**\n* Modify project structure, per [Issue 26](https://github.com/moarwick/elm-webpack-starter/issues/26)\n* Include Bootstrap JS, per [Issue 28](https://github.com/moarwick/elm-webpack-starter/issues/28)\n* More helpful install steps in README, per [Issue 29](https://github.com/moarwick/elm-webpack-starter/issues/29)\n* Update to latest packages\n\n**Ver 0.6.2**\n* Use `copy-webpack-plugin` instead of `cp` to copy files (Windows compatible)\n\n**Ver 0.6.0**\n* `elm-hot-loader` is back (no Elm code changes required!)\n* Switch to [bootstrap-sass](https://www.npmjs.com/package/bootstrap-sass) to demo CSS\n\n**Ver 0.5.0**\n* Update to Elm 0.17.0 (and other latest modules)\n* Upgrade starter code per [upgrade-docs](https://github.com/elm-lang/elm-platform/blob/master/upgrade-docs/0.17.md)\n* Remove `elm-hot-loader` (for now)\n\n**Ver 0.4.0**\n* Add [elm-hot-loader](https://github.com/fluxxu/elm-hot-loader) for HMR support (PR by [fluxxu](https://github.com/fluxxu))\n\n**Ver 0.3.0**\n* Use `html-webpack-plugin` to generate `index.html`\n* Apply hash filenames for bundled JS and CSS (prevents caching)\n* Image and favicon assets copied to `dist/`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwerner%2Fmadison-elm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwerner%2Fmadison-elm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwerner%2Fmadison-elm/lists"}