{"id":15557906,"url":"https://github.com/icholy/ember-brunch","last_synced_at":"2026-03-17T15:36:43.107Z","repository":{"id":3506092,"uuid":"4563300","full_name":"icholy/ember-brunch","owner":"icholy","description":null,"archived":false,"fork":false,"pushed_at":"2019-10-23T14:55:50.000Z","size":1884,"stargazers_count":80,"open_issues_count":5,"forks_count":23,"subscribers_count":11,"default_branch":"empty","last_synced_at":"2025-06-12T22:06:40.150Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/icholy.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}},"created_at":"2012-06-05T17:47:58.000Z","updated_at":"2024-04-17T21:21:41.000Z","dependencies_parsed_at":"2022-09-08T05:11:15.913Z","dependency_job_id":null,"html_url":"https://github.com/icholy/ember-brunch","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/icholy/ember-brunch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/icholy%2Fember-brunch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/icholy%2Fember-brunch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/icholy%2Fember-brunch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/icholy%2Fember-brunch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/icholy","download_url":"https://codeload.github.com/icholy/ember-brunch/tar.gz/refs/heads/empty","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/icholy%2Fember-brunch/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30626817,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T14:16:03.965Z","status":"ssl_error","status_checked_at":"2026-03-17T14:16:03.380Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-10-02T15:21:11.300Z","updated_at":"2026-03-17T15:36:43.068Z","avatar_url":"https://github.com/icholy.png","language":"JavaScript","funding_links":[],"categories":["Application skeletons for Brunch"],"sub_categories":[],"readme":"# Warning\n\nI've stopped using ember and am no longer maintaining this repository.\nIf someone is maintaining an up to date ember skeleton, let me know and I'll link to it here.\n\n# Alternatives\n**[Cinder Plate](https://github.com/edgycircle/cinder-plate)**  \nIt uses CoffeeScript and SASS. Handlebars templates live in separate files (unlike the usual approach of putting everthing in the `index.html`) and get pre-compiled. Cinder Plate is also able to generate a production build where JS and CSS files are minified. In addition the appropriate version of Ember.js (debug or production) is included.\n\n**[Brunch with Ember Reloaded](https://github.com/gcollazo/brunch-with-ember-reloaded)**  \nAn updated version of the Brunch with Ember skeleton that uses: **CoffeeScrip**, **Stylus**, **Auto Reload**, and **UglifyJS**. The skeleton also has a script to download, build and copy the latest version of *ember-data.js*, generators for common types of files and tests templates.\n# Brunch with Ember\n\nThis is a simple ember skeleton for [Brunch](http://brunch.io/) with working and up to date **handlebars template pre-compilng** :)\n\n## Getting started\n\nClone the repo and run `npm install` \u0026 `brunch build`.\nSee more info on the [official site](http://brunch.io)\n\n## Versions (branches)\n\n* `master` contains some demo code to give an understanding of how things should work\n* `empty` is a clean version of the skeleton with no examples\n\n## Usage\n    \n    brunch new myapp -s git://github.com/icholy/ember-brunch.git\n\nif you wanted to use the `empty` skeleton branch\n\n    git clone git://github.com/icholy/ember-brunch.git -b empty\n    brunch new myapp -s ./ember-brunch/\n\nOnce the project has been created, you can start a server by running\n\n    brunch watch --server\n\nthen visit `localhost:3333`\n\n## Overview\n\n    ├── app\n    │   ├── app.js\n    │   ├── assets\n    │   │   ├── img\n    │   │   │   ├── glyphicons-halflings.png\n    │   │   │   └── glyphicons-halflings-white.png\n    │   │   └── index.html\n    │   ├── controllers\n    │   ├── initialize.js\n    │   ├── models\n    │   ├── routes\n    │   ├── styles\n    │   │   └── application.css\n    │   ├── templates\n    │   │   ├── application.hbs\n    │   │   └── index.hbs\n    │   └── views\n    │       └── index.js\n    ├── config.coffee\n    ├── package.json\n    ├── README.md\n    ├── test\n    │   └── spec.coffee\n    └── vendor\n        ├── scripts\n        │   ├── bootstrap.js\n        │   ├── console-helper.js\n        │   ├── ember-data-latest.js\n        │   ├── ember-latest.js\n        │   ├── handlebars-1.0.rc.2.js\n        │   └── jquery-1.9.0.min.js\n        └── styles\n            └── bootstrap.css\n\n\n\n* `config.coffee` contains your app configuration. This is where you configure what Plugins / Languages to use and what rules are applied to them.\n* `app/` and subdirectories (excluding `app/assets`) contains files that are to be compiled. Javascript files, or files that compile to JS (coffeescript, roy etc.), are automatically wrapped as commonjs style modules so they can be loaded via `require('module/location')`.\n* `app/assets` contains images / static files. The contents of the directory are copied to `public/` without any modification.\n* `app/initialize.js`is responsible for loading all the `controllers`/`views`/etc.. classes.\n* `test/` contains unit tests.\n* `vendor/` contains all third-party code. The code wouldn’t be wrapped in\nmodules, it would be loaded instantly instead.\n\nThe generated output is placed in the `public/` (by default) directory when `brunch build` or `brunch watch` is executed.\n\n## Other\nSoftware Versions used:\n\n* jQuery 1.9.0\n* Ember 1.0.0-pre.4\n* Handlebars 1.0 rc2\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ficholy%2Fember-brunch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ficholy%2Fember-brunch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ficholy%2Fember-brunch/lists"}