{"id":15184704,"url":"https://github.com/adarshsingh1407/neo-angular-basic","last_synced_at":"2026-03-03T11:32:03.637Z","repository":{"id":106103528,"uuid":"115714515","full_name":"adarshsingh1407/neo-angular-basic","owner":"adarshsingh1407","description":"AngularJS Seed Project - Basic","archived":false,"fork":false,"pushed_at":"2017-12-29T12:11:13.000Z","size":148,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-25T14:51:54.209Z","etag":null,"topics":["angular","angular-1","angular-bootstrap","angular1","angularjs","bootstrap-4","bootstrap4","gruntjs","starter-project"],"latest_commit_sha":null,"homepage":null,"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/adarshsingh1407.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":"2017-12-29T10:49:52.000Z","updated_at":"2017-12-29T11:00:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"6bf456cb-4c66-4f48-bf31-d6c9f5c3e3c2","html_url":"https://github.com/adarshsingh1407/neo-angular-basic","commit_stats":{"total_commits":3,"total_committers":1,"mean_commits":3.0,"dds":0.0,"last_synced_commit":"26c6e1ac4378c4e9b9fd8e611e8142074f2f2467"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/adarshsingh1407/neo-angular-basic","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adarshsingh1407%2Fneo-angular-basic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adarshsingh1407%2Fneo-angular-basic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adarshsingh1407%2Fneo-angular-basic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adarshsingh1407%2Fneo-angular-basic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adarshsingh1407","download_url":"https://codeload.github.com/adarshsingh1407/neo-angular-basic/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adarshsingh1407%2Fneo-angular-basic/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30042931,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-03T10:53:31.691Z","status":"ssl_error","status_checked_at":"2026-03-03T10:53:22.041Z","response_time":61,"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":["angular","angular-1","angular-bootstrap","angular1","angularjs","bootstrap-4","bootstrap4","gruntjs","starter-project"],"created_at":"2024-09-27T17:22:20.510Z","updated_at":"2026-03-03T11:32:03.622Z","avatar_url":"https://github.com/adarshsingh1407.png","language":"JavaScript","readme":"# neo-angular-basic\n\nThis project is generated with [yo angular generator](https://github.com/yeoman/generator-angular)\nversion 0.16.0.\n\n## Dev Setup\n\n```bash\n1. npm install -g grunt-cli bower yo generator-karma generator-angular\n2. Install yarn\n```\n\n## Dev\n\n```bash\n1. grunt serve\n```\n\n## Prod\n\n```bash\n1. grunt build\n2. pm2 start ecosystem.config.js\n```\n\n## Managing dependencies\n\n```bash\n1. yarn add / yarn add -D\n2. Search and add the path of the required min files from the node_modules folder into index.html\n```\n\n\n## Usage\n\nFor step-by-step instructions on using Yeoman and this generator to build a TODO AngularJS application from scratch see [this tutorial.](http://yeoman.io/codelab/)\n\nInstall `yo`, `grunt-cli`, `generator-angular` and `generator-karma`:\n```\nnpm install -g grunt-cli yo generator-karma generator-angular\n```\n\n### Route\nGenerates a controller and view, and configures a route in `app/scripts/app.js` connecting them.\n\nExample:\n```bash\nyo angular:route myroute\n```\n\nProduces `app/scripts/controllers/myroute.js`:\n```javascript\nangular.module('myMod').controller('MyrouteCtrl', function ($scope) {\n  // ...\n});\n```\n\nProduces `app/views/myroute.html`:\n```html\n\u003cp\u003eThis is the myroute view\u003c/p\u003e\n```\n\n**Explicitly provide route URI**\n\nExample:\n```bash\nyo angular:route myRoute --uri=my/route\n```\n\nProduces controller and view as above and adds a route to `app/scripts/app.js`\nwith URI `my/route`\n\n### Controller\nGenerates a controller in `app/scripts/controllers`.\n\nExample:\n```bash\nyo angular:controller user\n```\n\nProduces `app/scripts/controllers/user.js`:\n```javascript\nangular.module('myMod').controller('UserCtrl', function ($scope) {\n  // ...\n});\n```\n### Directive\nGenerates a directive in `app/scripts/directives`.\n\nExample:\n```bash\nyo angular:directive myDirective\n```\n\nProduces `app/scripts/directives/myDirective.js`:\n```javascript\nangular.module('myMod').directive('myDirective', function () {\n  return {\n    template: '\u003cdiv\u003e\u003c/div\u003e',\n    restrict: 'E',\n    link: function postLink(scope, element, attrs) {\n      element.text('this is the myDirective directive');\n    }\n  };\n});\n```\n\n### Filter\nGenerates a filter in `app/scripts/filters`.\n\nExample:\n```bash\nyo angular:filter myFilter\n```\n\nProduces `app/scripts/filters/myFilter.js`:\n```javascript\nangular.module('myMod').filter('myFilter', function () {\n  return function (input) {\n    return 'myFilter filter:' + input;\n  };\n});\n```\n\n### View\nGenerates an HTML view file in `app/views`.\n\nExample:\n```bash\nyo angular:view user\n```\n\nProduces `app/views/user.html`:\n```html\n\u003cp\u003eThis is the user view\u003c/p\u003e\n```\n\n### Service\nGenerates an AngularJS service.\n\nExample:\n```bash\nyo angular:service myService\n```\n\nProduces `app/scripts/services/myService.js`:\n```javascript\nangular.module('myMod').service('myService', function () {\n  // ...\n});\n```\n\nYou can also do `yo angular:factory`, `yo angular:provider`, `yo angular:value`, and `yo angular:constant` for other types of services.\n\n### Decorator\nGenerates an AngularJS service decorator.\n\nExample:\n```bash\nyo angular:decorator serviceName\n```\n\nProduces `app/scripts/decorators/serviceNameDecorator.js`:\n```javascript\nangular.module('myMod').config(function ($provide) {\n    $provide.decorator('serviceName', function ($delegate) {\n      // ...\n      return $delegate;\n    });\n  });\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadarshsingh1407%2Fneo-angular-basic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadarshsingh1407%2Fneo-angular-basic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadarshsingh1407%2Fneo-angular-basic/lists"}