{"id":15059541,"url":"https://github.com/khusnetdinov/elmkit","last_synced_at":"2025-04-10T05:31:41.911Z","repository":{"id":48704248,"uuid":"69867684","full_name":"khusnetdinov/elmkit","owner":"khusnetdinov","description":":school_satchel: Elm kit is web application boilerplate kit for development. This kit build on Brunch, Node, Sass, Elm-lang. It helps you to start development more productive following best practices.","archived":false,"fork":false,"pushed_at":"2023-10-10T18:10:58.000Z","size":445,"stargazers_count":51,"open_issues_count":3,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-24T06:51:37.030Z","etag":null,"topics":["brunch","elm","elm-kit","elm-lang","kit","sass"],"latest_commit_sha":null,"homepage":"","language":"Elm","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/khusnetdinov.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}},"created_at":"2016-10-03T12:17:03.000Z","updated_at":"2024-11-19T14:36:57.000Z","dependencies_parsed_at":"2024-01-05T22:01:20.567Z","dependency_job_id":"2718a013-d66c-466e-982c-64335c971ade","html_url":"https://github.com/khusnetdinov/elmkit","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khusnetdinov%2Felmkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khusnetdinov%2Felmkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khusnetdinov%2Felmkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khusnetdinov%2Felmkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/khusnetdinov","download_url":"https://codeload.github.com/khusnetdinov/elmkit/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248163067,"owners_count":21057864,"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":["brunch","elm","elm-kit","elm-lang","kit","sass"],"created_at":"2024-09-24T22:45:15.791Z","updated_at":"2025-04-10T05:31:41.856Z","avatar_url":"https://github.com/khusnetdinov.png","language":"Elm","funding_links":[],"categories":["Boilerplates"],"sub_categories":["Outdated Boilerplates"],"readme":"[![Build Status](https://travis-ci.org/khusnetdinov/elmkit.svg?branch=master)](https://travis-ci.org/khusnetdinov/elmkit) [![Open Source Helpers](https://www.codetriage.com/khusnetdinov/elmkit/badges/users.svg)](https://www.codetriage.com/khusnetdinov/elmkit)\n\n![img](https://avatars0.githubusercontent.com/u/4359353?v=3\u0026s=150)\n# Elm kit - web application boilerplate | starter kit\n\n\u003e  [Elm kit](https://github.com/khusnetdinov/elmkit) is web application boilerplate kit for development. This kit build on [Brunch](http://brunch.io/), [Node](https://nodejs.org/en/), [Sass](http://sass-lang.com/), [Elm-lang](http://elm-lang.org/). It helps you to start development more productive following best practices.\n\n## Features\n\n- Auto building project using [Brunch](https://brunch.io)\n- Auto re-building on changing files [auto-reload-brunch](https://github.com/brunch/auto-reload-brunch)\n- Hot Module Reloading [hrm-brunch](https://github.com/brunch/hmr-brunch)\n- Integration [Elm-lang](http://elm-lang.org/)\n- Auto preprocessing [Scss](http://sass-lang.com/) styles\n- Testing elm components with [elm-test](https://github.com/elm-community/elm-test)\n\n## Getting started\n\n### Files structure\n```\n├── /src/                       # The source code of the application\n│   ├── /assets/                # Files in this folder just copy to public\n│   │   ├── /images/            # Images folder\n│   │   ├── /fonts/             # Fonts folder\n│   │   ├── favicon.ico         # Project Favicon\n│   │   └── index.html          # Layout html file\n│   ├── /elm/                   # Not compiled Elm files\n│   │   └── Application.elm     # Entry point for elm files\n│   ├── /javascripts/           # Not compiled javascripts files\n│   │   └── appliction.js       # Entry point for scss file\n│   └── /stylessheets/          # Not compiled stylessheets files\n│       ├── /global/            # Best place for global settings\n│       │   ├── fonts.scss      # Fonts settings and loading\n│       │   ├── forms.scss      # Global forms settings\n│       │   ├── mixins.scss     # Custom mixins\n│       │   ├── overloads.scss  # Styles overloads for 3rd party\n│       │   └── settings.scss   # Main styles setting\n│       ├── /modules/           # Elm modules styles\n│       └── appliction.scss     # Entry point for scss file\n│\n├── /public/                    # Brunch builded and compiled project files\n│   ├── /images/                # Images copied folder\n│   ├── /.. other ../           # Other static folders\n│   ├── /javascripts/           # Project javascript files\n│   │   ├── main.js             # Elm compiled javascript\n│   │   └── application.js      # Main javascript file\n│   ├── /stylesheets/           # Project stylesheet files\n│   │   └── appliction.css      # Main css file\n│   ├── favicon.ico             # Project favicon\n│   └── index.html              # Builded index page\n│\n├── /tests/                     # Tests for elm components\n│   ├── Main.elm                # Entry point for all tests\n│   ├── Tests.elm               # Test suite\n│   └── elm-package.json        # Copy of elm-package.json from root\n│\n├── /docs/                      # Documentation files for the project\n├── /elm-stuff/                 # Elm compiler technical folder\n├── /node_modules/              # Node (Brunch) 3rd-party libraries\n│\n│── package.json                # The list of Node (Brunch) 3rd party libraries\n│── elm-package.json            # The list of Elm lang 3rd party libraries\n│── brunch-config.js            # Brunch config for project\n│── README.md                   # Project description\n│── LICENSE                     # License\n│── .editorconfig               # Global editor config\n└── .gitignore                  # Git ignored files\n```\n\n\u003e Brunch compiled files with `*.js.map` are junk.\n\n### Commands\n\n `npm run development` - Run development server\n\n `npm run build`       - Create build for production\n\n `npm test`        - Run tests (compile and run, wrapper for elm-test)\n\n## Requirements\n\nYou need to install [Node](https://nodejs.org/en/), [Elm-lang](http://elm-lang.org/);\n\n## Installation\n\n`git clone https://github.com/khusnetdinov/elmkit`\n\n`cd elmkit`\n\n`npm install`\n\n`elm package install`\n\n`npm run development`\n\n# License\n\n### This code is free to use under the terms of the MIT license.\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhusnetdinov%2Felmkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkhusnetdinov%2Felmkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhusnetdinov%2Felmkit/lists"}