{"id":19320383,"url":"https://github.com/jlyonsmith/generator-sonic","last_synced_at":"2026-06-11T22:31:36.375Z","repository":{"id":16375584,"uuid":"19125967","full_name":"jlyonsmith/generator-sonic","owner":"jlyonsmith","description":"A Yeoman generator conforming to the latest AngularJS best practices","archived":false,"fork":false,"pushed_at":"2014-04-24T22:49:47.000Z","size":140,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-12-25T01:12:30.939Z","etag":null,"topics":[],"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/jlyonsmith.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-04-24T22:15:42.000Z","updated_at":"2014-04-24T22:49:47.000Z","dependencies_parsed_at":"2022-09-13T11:11:03.366Z","dependency_job_id":null,"html_url":"https://github.com/jlyonsmith/generator-sonic","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jlyonsmith/generator-sonic","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlyonsmith%2Fgenerator-sonic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlyonsmith%2Fgenerator-sonic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlyonsmith%2Fgenerator-sonic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlyonsmith%2Fgenerator-sonic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jlyonsmith","download_url":"https://codeload.github.com/jlyonsmith/generator-sonic/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jlyonsmith%2Fgenerator-sonic/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34221150,"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-06-11T02:00:06.485Z","response_time":57,"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-10T01:28:34.268Z","updated_at":"2026-06-11T22:31:36.359Z","avatar_url":"https://github.com/jlyonsmith.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sonic AngularJS Yeoman Generator\n\nThis project is a [Yeoman Generator](http://yeoman.io/generators.html) for creating web sites that conform to the latest [Google AngularJS Best Practices](https://docs.google.com/a/artifacttech.com/document/d/1XXMvReO8-Awi1EZXAXS4PzDzdNvV6pGcuaF4Q9821Es/pub).  It can be installed directly from the [NPM Repository](https://npmjs.org/package/generator-sonic)\n\nThe basic generator command is `$ yo sonic`.\n\n## What makes it cool\n\n 1. **Ultra Fast** - Uses Gulp instead of Grunt\n 2. **Live Reload** pre-configured\n 3. **BrowserSync** pre-configured\n 4. **Development** and **Production** code are separated\n 5. **AngularUI** included (optional)\n 6. **JSHint** pre-configured\n 7. **Protractor** (E2E tests) pre-configured\n 8. **FontFace** - Add [@fontface](https://github.com/jlyonsmith/generator-sonic/blob/master/font/USAGE.md) on fly\n 9. [Constants](https://github.com/jlyonsmith/generator-sonic/blob/master/constant/USAGE.md) and [Values](https://github.com/jlyonsmith/generator-sonic/blob/master/value/USAGE.md) will be added in main.js (No new file will be created)\n 10. [Adding Routes](https://github.com/jlyonsmith/generator-sonic/blob/master/route/USAGE.md) will also create and link the css and controller in their respective folders.\n 11. [Adding Views](https://github.com/jlyonsmith/generator-sonic/blob/master/view/USAGE.md) is also allowed\n 12. [Adding Styles](https://github.com/jlyonsmith/generator-sonic/blob/master/style/USAGE.md) is also allowed\n 13. Use `gulp build`for dev mode and `gulp build:prod` for production.\n 14. Share code with client using command `gulp zip` (Will create the .zip file of build folder)\n\n## \u003ci class=\"icon-download\"\u003e\u003c/i\u003e Installation\n\nFirst of all you need to have [node.js](http://nodejs.org/) and Yeoman `npm install -g yo` installed.\n\nInstall the Sonic Generator\n\n    sh\n    npm install -g generator-sonic\n\n\nMake a new Directory for the project and cd into it\n\n    sh\n    mkdir my-new-project \u0026\u0026 cd $_\n\nThen execute the Sonic command\n\n    sh\n    yo sonic [app-name]\n\n\nAnswer few question on the command prompt and **that's it**!\n\n---\n\nTo install the dependency packages (Required **only if** you need to run the `npm install` as **root**)\n\n1. You first need to install all the node modules required by Sonic.\n\n    npm run-script preinstall\n\nOr else you can directly run `npm install`\n\n2. After that you need to download all the libraries using bower.\n\n    npm run-script postinstall\n\nOr else you can directly run `bower install`\n\n---\n\nFinally to start the server\n\n    sh\n    gulp\n\nOr else you can run `npm start`\n\n\n## \u003ci class=\"icon-file\"\u003e\u003c/i\u003e App Structure\n\n    - app/\n        |- index.html\n        |- app.js\n        |- main.scss\n        |- gulpfile.js\n        |- app-controller.js\n        |- app-controller-test.js\n\n## \u003ci class=\"icon-refresh\"\u003e\u003c/i\u003e Sonic Commands\n\nThe available **Sonic** sub-generators are:\n\n* [Sonic:directive](https://github.com/jlyonsmith/generator-sonic/blob/master/directive/USAGE.md)\n* [Sonic:service](https://github.com/jlyonsmith/generator-sonic/blob/master/service/USAGE.md)\n\n## \u003ci class=\"icon-pencil\"\u003e\u003c/i\u003e Special Thanks\n\nWe would like to thank following for creating awesome stuff\n\n* [AngularJS](http://angularjs.org) - MV* Framework for WebApps\n* [Grunt](http://gruntjs.com) - A JavaScript task runner\n* [Gulp](http://gulpjs.com/) - The streaming build system\n* [Bower](http://bower.io) - Front End Package Manager\n* [jQuery](http://jquery.com/) - DOM Manipulation Library\n* [Yeoman](http://yeoman.io/) - Worlflow for modern WebApps\n* [Generator](https://github.com/yeoman/generator-angular) - Yeoman Angular Generator\n\n\n## License\n\nSee [Sonic License](https://github.com/jlyonsmith/generator-sonic/blob/master/LICENSE.md)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjlyonsmith%2Fgenerator-sonic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjlyonsmith%2Fgenerator-sonic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjlyonsmith%2Fgenerator-sonic/lists"}