{"id":20981229,"url":"https://github.com/jasonmdev/angular-basic-array","last_synced_at":"2026-02-09T02:31:54.764Z","repository":{"id":132163761,"uuid":"67224320","full_name":"JasonMDev/angular-basic-array","owner":"JasonMDev","description":"This is a basic angularJS app using an array to display many items. Uses Express 4","archived":false,"fork":false,"pushed_at":"2016-09-14T20:38:09.000Z","size":1121,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-08T20:53:19.738Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://fierce-retreat-36591.herokuapp.com/","language":"HTML","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/JasonMDev.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-09-02T13:21:00.000Z","updated_at":"2016-09-09T21:33:05.000Z","dependencies_parsed_at":null,"dependency_job_id":"482d9543-093c-4841-a8cc-a9113d60adda","html_url":"https://github.com/JasonMDev/angular-basic-array","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JasonMDev/angular-basic-array","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JasonMDev%2Fangular-basic-array","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JasonMDev%2Fangular-basic-array/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JasonMDev%2Fangular-basic-array/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JasonMDev%2Fangular-basic-array/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JasonMDev","download_url":"https://codeload.github.com/JasonMDev/angular-basic-array/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JasonMDev%2Fangular-basic-array/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29254316,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T01:52:29.835Z","status":"online","status_checked_at":"2026-02-09T02:00:09.501Z","response_time":56,"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-19T05:35:15.461Z","updated_at":"2026-02-09T02:31:54.749Z","avatar_url":"https://github.com/JasonMDev.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# angular-basic-array\n\nA basic AngularJS app using [Express 4](http://expressjs.com/).\nIt demonstrates the basic of looping through an array of data using 'ng-repeat'.\nIt also has like and dislike buttons using 'ng-click'. It is based upon the AngularJS lesson found at [codecademy](http://www.codecademy.com/).\n\nThe app is ready to deploy to [Heroku](http://www.heroku.com/). The Procfile, .env and server.js files have already been created, therefore only the following is required to get it deployed to [Heroku](http://www.heroku.com/):\n\nFurther details about the steps in deploying the app can be found at the following articles:\n- [Deploying-nodejs on Heroku](https://devcenter.heroku.com/articles/deploying-nodejs) \n\n## A. Prerequisites\nIt is assumed that you have the following installed:\n- [Node.js](http://nodejs.org/) and npm installed.\n- an existing Node.js app.\n- a free Heroku account.\n- the Heroku CLI and [Heroku Toolbelt](https://toolbelt.heroku.com/).\n\n\n## B. Get it Locally\n\nFork the repo and the make a clone of the forked repo in your local machine.\n\n## C. Check production on local\n\nFirst check if you aren't relying in system-level packages.\nYou shouldn't get errors.\n```sh\n$ cd angular-basic-array\n$ rm -rf node_modules; npm install --production\n$ heroku local web\n```\n\nYour app should now be running on [localhost:5000](http://localhost:5000/).\n\nIf there is an error due a module not been found, it should show what dependency is missing from your package.json file.\n\n## C. Check development on local\n\n```sh\n$ cd angular-basic-array\n$ npm install\n$ heroku local web\n```\n\nYour app should now be running on [localhost:5000](http://localhost:5000/).\n\nYou can also try out the npm server\n```sh\n$ cd angular-basic-array\n$ npm start\n```\nYour app should now be running on [localhost:5000](http://localhost:5000/).\n\n## D. Deploying to Heroku\n\n```\n$ heroku create\n$ git push heroku master\n$ heroku open\n```\n\n## Documentation\n\nFor more information about using Node.js on Heroku, see these Dev Center articles:\n\n- [Deploying-nodejs on Heroku](https://devcenter.heroku.com/articles/deploying-nodejs) \n- [Getting Started with Node.js on Heroku](https://devcenter.heroku.com/articles/getting-started-with-nodejs)\n- [Heroku Node.js Support](https://devcenter.heroku.com/articles/nodejs-support)\n- [Node.js on Heroku](https://devcenter.heroku.com/categories/nodejs)\n- [Best Practices for Node.js Development](https://devcenter.heroku.com/articles/node-best-practices)\n- [Using WebSockets on Heroku with Node.js](https://devcenter.heroku.com/articles/node-websockets)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjasonmdev%2Fangular-basic-array","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjasonmdev%2Fangular-basic-array","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjasonmdev%2Fangular-basic-array/lists"}