{"id":19252396,"url":"https://github.com/jbutko/angularjs-boilerplate","last_synced_at":"2025-04-12T21:22:45.995Z","repository":{"id":29153689,"uuid":"32683962","full_name":"jbutko/AngularJS-Boilerplate","owner":"jbutko","description":"Simple AngularJS Boilerplate to kick start your new project with SASS support and Gulp watch/build tasks","archived":false,"fork":false,"pushed_at":"2024-04-17T17:41:13.000Z","size":283,"stargazers_count":403,"open_issues_count":5,"forks_count":153,"subscribers_count":23,"default_branch":"master","last_synced_at":"2025-04-04T03:02:49.812Z","etag":null,"topics":["angularjs-boilerplate","sass-support"],"latest_commit_sha":null,"homepage":"http://www.jozefbutko.com/angularjs-boilerplate/","language":"CSS","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/jbutko.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":"2015-03-22T16:25:42.000Z","updated_at":"2025-01-01T01:35:05.000Z","dependencies_parsed_at":"2024-11-09T18:27:58.114Z","dependency_job_id":"b157bfcf-3d72-4c87-be59-7bf4dbde0ed6","html_url":"https://github.com/jbutko/AngularJS-Boilerplate","commit_stats":{"total_commits":53,"total_committers":12,"mean_commits":4.416666666666667,"dds":0.5660377358490566,"last_synced_commit":"ef2a287bda99453e82e85e26d200fe4f2ca3930a"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbutko%2FAngularJS-Boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbutko%2FAngularJS-Boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbutko%2FAngularJS-Boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbutko%2FAngularJS-Boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jbutko","download_url":"https://codeload.github.com/jbutko/AngularJS-Boilerplate/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248632703,"owners_count":21136743,"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":["angularjs-boilerplate","sass-support"],"created_at":"2024-11-09T18:26:41.725Z","updated_at":"2025-04-12T21:22:45.964Z","avatar_url":"https://github.com/jbutko.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Disclaimer:\nFor updated version of AngularJS-Boilerplate please use this one: https://github.com/jbutko/ExpressJS-Socket.IO-AngularJS-Boilerplate/tree/master/client\nIt's component based, based on Angular v1.6.1 and as routing library is used Angular UI Router v1.\n\n# AngularJS-Boilerplate\nSimple AngularJS Boilerplate to kick start your new project with SASS support and Gulp watch/build tasks\n\n# Features\n* SASS support including sourceMaps\n* Minimal CSS styling of the view\n* Gulp watch, build and local server tasks\n* Responsive navigation\n* Owl slider directive\n* localStorage service for set, get, remove data\n* queryService $http wrapper to handle calls\n* clear folder structure\n* less than 10 request in build version\n* minified CSS and JS build files\n* google analytics snippet\n\n## Download\n```bash\nbower install angularjs-boilerplate\n```\n\nor\n\n```bash\ngit clone https://github.com/jbutko/AngularJS-Boilerplate.git\n```\n\n## 1. Setup\n```bash\nnpm install\n```\n- install all npm and bower dependencies\n\n**Note:** If `npm install` fails during dependency installation it will be likely caused by `gulp-imagemin`. In that case remove `gulp-imagemin` dependency from `package.json`, run `npm install` again and then install `gulp-imagemin` separately with following command: `npm install gulp-imagemin --save-dev`\n\n## 2. Watch files\n```bash\nnpm start\n```\nor\n```bash\ngulp\n```\n\n- all SCSS/HTML will be watched for changes and injected into browser thanks to BrowserSync\n\n## 3. Build production version\n```bash\nnpm run build\n```\nor\n```bash\ngulp build\n```\n- this will process following tasks:\n* clean _build folder\n* compile SASS files, minify and uncss compiled css\n* copy and optimize images\n* minify and copy all HTML files into $templateCache\n* build index.html\n* minify and copy all JS files\n* copy fonts\n* show build folder size\n\n## 4. Start webserver without watch task\n```bash\nnpm run server\n```\nor\n```bash\ngulp server\n```\n\n## 5. Start webserver from build folder\n```bash\nnpm run serverbuild\n```\nor\n```bash\ngulp server-build\n```\n\n## Contact\nCopyright (C) 2015 Jozef Butko\u003cbr\u003e\n[www.jozefbutko.com/resume](http://www.jozefbutko.com/resume)\u003cbr\u003e\n[www.github.com/jbutko](http://www.github.com/jbutko)\u003cbr\u003e\n[@jozefbutko](http://www.twitter.com/jozefbutko)\u003cbr\u003e\nReleased under MIT license\n\n## Changelog\n### 1.1.7\n- Install all dependencies with 'npm install' (bower included) - pull req #7 by @bbodine1\u003cbr\u003e\n15.05.2015\n\n### 1.1.6\n- Cleaned up the gulpfile with gulp-load-plugins - pull req #6 by @davieschoots\u003cbr\u003e\n26.04.2015\n\n### 1.1.5\n- added MIT License\u003cbr\u003e\n19.04.2015\n\n### 1.1.4\n- added minification of JS files in build task\u003cbr\u003e\n- added favicon\u003cbr\u003e\n- gulpfile.js beautify and clean up\u003cbr\u003e\n- added owl carousel into demo\u003cbr\u003e\n04.04.2015\n\n### 1.1.3\n- index.html update: added browserupgrade tag\u003cbr\u003e\n- index.html update: http-equiv meta tag, google analytics support\u003cbr\u003e\n- comments update in gulpfile.js\u003cbr\u003e\n- gulpfile.js formatting\u003cbr\u003e\n- pull request #1: removed duplicate gulp require in gulpfile.js\u003cbr\u003e\n04.04.2015\n\n### 1.1.2\n- package.json and gulpfile.js clean up\u003cbr\u003e\n02.04.2015\n\n### 1.1.1\n- opened responsive nav fix, css build .min appendix, live demo, github icons\u003cbr\u003e\n31.03.2015\n\n### 1.1.0\n- many improvements: responsive nav, code clean up, gulp angular templateCache\nsupport, gulp task for local server, SASS sourceMaps support\u003cbr\u003e\n29.03.2015\n\n### 1.0.0\n- initial release\u003cbr\u003e\n22.03.2015\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjbutko%2Fangularjs-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjbutko%2Fangularjs-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjbutko%2Fangularjs-boilerplate/lists"}