{"id":16150925,"url":"https://github.com/iondrimba/es6starterproject","last_synced_at":"2026-05-09T02:35:10.970Z","repository":{"id":78408748,"uuid":"64432271","full_name":"iondrimba/es6starterproject","owner":"iondrimba","description":"ES6 startup project","archived":false,"fork":false,"pushed_at":"2018-04-01T19:48:43.000Z","size":1290,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-13T04:46:41.128Z","etag":null,"topics":["browserify","coverage","es6","gulp","jasmine","karma","pushstate","scss-lint","semver","travis"],"latest_commit_sha":null,"homepage":null,"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/iondrimba.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":"2016-07-28T22:30:00.000Z","updated_at":"2018-10-05T03:11:10.000Z","dependencies_parsed_at":"2023-06-10T08:45:11.864Z","dependency_job_id":null,"html_url":"https://github.com/iondrimba/es6starterproject","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iondrimba%2Fes6starterproject","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iondrimba%2Fes6starterproject/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iondrimba%2Fes6starterproject/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iondrimba%2Fes6starterproject/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iondrimba","download_url":"https://codeload.github.com/iondrimba/es6starterproject/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247563906,"owners_count":20958971,"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":["browserify","coverage","es6","gulp","jasmine","karma","pushstate","scss-lint","semver","travis"],"created_at":"2024-10-10T00:53:37.868Z","updated_at":"2026-05-09T02:35:05.936Z","avatar_url":"https://github.com/iondrimba.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ES6 Starter Project\n\nReady to go ES6 project starter with Tests and Coverage.\n\n[![Travis build status](https://travis-ci.org/iondrimba/es6starterproject.svg?branch=master)](https://travis-ci.org/iondrimba/es6starterproject) [![Build status](https://ci.appveyor.com/api/projects/status/afgdiqmde47rpubf/branch/master?svg=true)](https://ci.appveyor.com/project/iondrimba/es6starterproject/branch/master) [![Coverage Status](https://coveralls.io/repos/github/iondrimba/es6starterproject/badge.svg?branch=master)](https://coveralls.io/github/iondrimba/es6starterproject?branch=master) [![Maintainability](https://api.codeclimate.com/v1/badges/cf582141f275b40ebc0a/maintainability)](https://codeclimate.com/github/iondrimba/es6starterproject/maintainability)\n\n\n#### Requires:\n\n* NodeJs\n* Gulp\n\n## Installation\n\n```sh\n git clone https://github.com/iondrimba/es6starterproject.git\n cd es6starterproject\n npm install\n gulp\n```\n\n### [Live demo]\n\n#### GOAL:\nReduce time spent by developers looking to work today with all the new ES6 features, it also includes Tests and Coverage. I chose to leave it simple as possible (no MV* Framework dependency).\n\n\n#### Features:\n\n* ES6 ready\n* SemVer (Automated package and files versioning)\n* Router system with pushstate (page.js)\n* Templating engine (handlebars.js)\n* Tests (Jasmine + karma)\n* Coverage (Coveralls)\n* CI (Travis)\n* Module system CommonJs (browserify)\n\n\u003e In order to test if Pushstate is working\n\u003e you have to host it on apache so it can reads the .htaccess file\n\n#### Testing:\n\n* $ npm test\n\n#### Includes:\n\n* ES6 transpile via Babel\n* BrowserSync\n* Browserify\n* Karma\n* SemVer\n* Jasmine\n* Code Coverage\n* Sass\n* ESLint\n* Scss Lint (Requires Ruby and [scss-lint])\n* Imagemin (images optimization)\n* Uglify\n* Watch\n* Html-Min\n* Post-Css (autoprefixer)\n\n#### Gulp Tasks:\n\n* gulp (default)\n* gulp deploy (run tasks without browser-sync and watch)\n* gulp optimize (run optimization tasks)\n* gulp bump-patch / minor / major (update files with version number)\n\n#### Semantic Versioning:\n\nThe bump-versions tasks should be executed after your deploy and optimize task.\nThe task will:\n\n1. Rename the file app.js to app.version.js\n2. Rename the file app.css to app.version.css\n3. Will update the index.html with the new file references.\n\n#### Structure:\n\n````bash\n├── public/\n│    ├─── css/\n│    ├─── js/\n│    ├─── images/\n│    ├─── .htaccess\n│    └─── index.html\n│\n│── spec/(jasmine spec files)\n│\n│── src/\n│    ├── images/\n│    ├── scripts/\n│\t   │    ├─── core/\n│\t   │    ├─── models/\n│\t   │    ├─── partials/\n│\t   │    ├─── views\n│\t   │    └─── app.js\n│\t   │\n│\t   ├── scss/\n│\t   │    ├─── components/\n│\t   │    ├─── partials/\n│\t   │    ├─── views/\n│\t   │    └─── app.scss\n│\t   │\n│    └── templates/\n│\n│── tasks/\n│\n│── .gitignore\n│── .travis.yml\n│── gulpfile.js\n│── karma.conf.js\n│── LICENSE\n│── lint.yml\n│── package.json\n└── README.md\n````\n\n[scss-lint]:\u003chttps://github.com/brigade/scss-lint#installation\u003e\n[Live demo]:\u003chttp://iondrimba.github.io/es6starterproject/\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiondrimba%2Fes6starterproject","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiondrimba%2Fes6starterproject","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiondrimba%2Fes6starterproject/lists"}