{"id":20099010,"url":"https://github.com/jream/frontend-develop","last_synced_at":"2026-06-01T01:31:43.606Z","repository":{"id":78658784,"uuid":"48976167","full_name":"JREAM/frontend-develop","owner":"JREAM","description":"Front End Tool using Gulp which includes Brower Sync, Babel, React, BS3, jQuery, etc.","archived":false,"fork":false,"pushed_at":"2016-07-13T03:46:23.000Z","size":15,"stargazers_count":1,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-02T16:48:44.551Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://jream.com","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/JREAM.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":"2016-01-04T05:17:57.000Z","updated_at":"2016-09-29T01:10:09.000Z","dependencies_parsed_at":"2023-03-03T14:30:36.893Z","dependency_job_id":null,"html_url":"https://github.com/JREAM/frontend-develop","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/JREAM/frontend-develop","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JREAM%2Ffrontend-develop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JREAM%2Ffrontend-develop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JREAM%2Ffrontend-develop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JREAM%2Ffrontend-develop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JREAM","download_url":"https://codeload.github.com/JREAM/frontend-develop/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JREAM%2Ffrontend-develop/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33756575,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-31T02:00:06.040Z","response_time":95,"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-11-13T17:07:39.445Z","updated_at":"2026-06-01T01:31:43.601Z","avatar_url":"https://github.com/JREAM.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Frontend-Develop\n\n- This is a build tool to speed up front-end development.\n- Everything is run through the terminal, eg: `gulp watch`.\n- I currently run this on Ubuntu for development.\n- You do not install the `npm packages` on your live server.\n- I am using `node v0.12.0`.\n\n## What is included?\nThese are some of the front-end tools at your disposal.\n\n- Babel\n- Bootstrap 3\n- DevIcons\n- Font-Awesome\n- jQuery 2\n- jQuery Lazyload\n- React + JSX\n- Select2 (And Bootstrap CSS)\n- Note: jQuery + Bootstrap are compiled into dependencies.min.js \u0026 dependencies.min.css, you can use this if you like or just use the files from the `third-party/` folder.\n\n## Requirements\nYou must have the following packages installed on your system:\n\n- nodejs\n- npm\n- bower (optional)\n\n## Setup \u0026 Configuration\n\nSetup is very easy, it takes one command: `npm install`\n\nIt may take a few moments to install, but when it is complete you are good to go. Using `babel-preset-es2015` includes babel for all NodeJS versions.\n\nTo use the default configuration rename: `config-gulp.yml.sample` to `config-gulp.yml`.\nYou can also place this a folder below (see why).\n\n#### Git Submodule In Your Project\nIf you'd like to run this up to date in an your project while preserving this as a `git module` you would do the following:\n\n    cd /your-app/\n    git submodule add git@github.com:JREAM/frontend-develop.git develop\n    cp develop/config-gulp.yml.sample config-gulp.yml\n    cd develop\n    gulp\n\n#### Changing Configuration\nThe default directories are as follows:\n\n- `/src` - Your custom files, your files can be named anything.\n    - `/js`\n    - `/sass`\n    - `/img`\n- `dist` - Your rendered, combined and compressed content\n    - `/css`\n    - `/fonts`\n    - `/img`\n    - `/js`\n    - `/third-party`\n\nThe **default** distribution, or rendered file names are:\n\n- `app.min.css`\n- `app.min.js`\n- `dependencies.min.css`\n- `dependencies.min.js`\n\nThe above files would go in your HTML file, and any other extra items under `/third-party` if you wanted them included.\n\n#### Change Configuration Output\nTo change the names and locations of your output, edit `config-gulp.yml`.\nModify whatever you like. However, you should **not** edit the `third_party` parameters.\n\n#### Live Browser Reload\nTo get the live browser reloading running you need to set **two values**.\n\n**The first** is the location to your projects main entry point in `config-gulp.yml`.\nChange this line `browser_proxy: \"localhost/your-project\"` to your path.\n\n**The second** is the location of your view files in `config-gulp.yml`.\nChange this line `template_files: \"../app/views/**/*.volt\"` to your relative view path.\n\nAll you have to do now is run `gulp watch` and BrowserSync will reload all your SASS/JS/HTML editing on the fly.\n\n### Third Party\n\nThird party data comes from `package.json`. This gathers data from the `node_modules` folder.\n\n### Usage\n\nFirst create a SASS or JS file (or both) and run gulp, then check your output folder.\n\n| Command           | Result |\n|-------------------|--------|\n| `gulp`            | Runs: All Commands except Watch            |\n| `gulp img`        | Runs: Image Minifier                       |\n| `gulp js`         | Runs: Custom JS                            |\n| `gulp sass`       | Runs: Custom SASS                          |\n| `gulp third_party`| Runs: Compiles Third Party JS and CSS      |\n| `gulp watch`      | Runs: Browser Live Reload of JS, SASS, IMG |\n\n## Shoutouts\n\n[Dan Sackett](https://github.com/dansackett) - Got me into Gulp :)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjream%2Ffrontend-develop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjream%2Ffrontend-develop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjream%2Ffrontend-develop/lists"}