{"id":15093218,"url":"https://github.com/zakimohammed/ng-notsey-app","last_synced_at":"2026-02-18T19:01:49.116Z","repository":{"id":250597890,"uuid":"834508966","full_name":"ZakiMohammed/ng-notsey-app","owner":"ZakiMohammed","description":"Angular notes app (notsey) getting started","archived":false,"fork":false,"pushed_at":"2024-12-29T10:21:44.000Z","size":774,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-07T16:43:55.349Z","etag":null,"topics":["angular","angular-cli","bootstrap","bootswatch","javascript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/ZakiMohammed.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,"zenodo":null}},"created_at":"2024-07-27T13:36:00.000Z","updated_at":"2024-12-29T10:21:47.000Z","dependencies_parsed_at":"2024-07-28T18:50:05.125Z","dependency_job_id":"68040927-3484-4faf-aea8-8f5d73be3584","html_url":"https://github.com/ZakiMohammed/ng-notsey-app","commit_stats":null,"previous_names":["zakimohammed/ng-notsey-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ZakiMohammed/ng-notsey-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZakiMohammed%2Fng-notsey-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZakiMohammed%2Fng-notsey-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZakiMohammed%2Fng-notsey-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZakiMohammed%2Fng-notsey-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ZakiMohammed","download_url":"https://codeload.github.com/ZakiMohammed/ng-notsey-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZakiMohammed%2Fng-notsey-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29590683,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T18:54:29.675Z","status":"ssl_error","status_checked_at":"2026-02-18T18:50:50.517Z","response_time":162,"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-cli","bootstrap","bootswatch","javascript"],"created_at":"2024-09-25T11:04:19.560Z","updated_at":"2026-02-18T19:01:49.096Z","avatar_url":"https://github.com/ZakiMohammed.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Notesy App - Angular Getting Started\r\n\r\nAngular notes app (notsey) getting started.\r\n\r\n![](https://raw.githubusercontent.com/ZakiMohammed/react-notsey-app/master/banner.png)\r\n\r\n___\r\n\r\nCheck out the CodeOmelet blog posts for this project:\r\n\r\n- [Angular Journey: Part 1 - Getting Started](https://codeomelet.com/posts/ng-journey-part-1-getting-started)\r\n- [Angular Journey: Part 2 - Bindings, Directives, Components, Services](https://codeomelet.com/posts/ng-journey-part-2-bindings-directives-components-services)\r\n- [Angular Journey: Part 3 - Angular Routes](https://codeomelet.com/posts/ng-journey-part-3-angular-routes)\r\n- [Angular Journey: Part 4 - Working with Web API](https://codeomelet.com/posts/ng-journey-part-4-working-with-web-api)\r\n\r\n## Folders:\r\n\r\n```\r\nnotsey\r\n|-- ng-1-init\r\n|-- ng-2-crud\r\n|-- ng-3-routes\r\n|-- ng-4-api\r\n|-- README.md\r\n```\r\n\r\n1. Ng Init: Initial project skeleton and init commands.\r\n2. Ng CRUD: List, add and remove operations.\r\n3. Ng Routes: Configuring routes and navigation.\r\n4. Ng API: Getting data from API.\r\n\r\n## Run Application\r\n```\r\nnpm start\r\n```\r\n\r\n## Initial Setup\r\n\r\n```\r\nng new ng-notesy-app --standalone=false\r\n\r\n? Which stylesheet format would you like to use? Sass (SCSS)\r\n? Do you want to enable Server-Side Rendering (SSR) and Static Site Generation (SSG/Prerendering)? no\r\n```\r\n\r\n## Add Dependencies\r\n\r\n```\r\nnpm i bootstrap\r\nnpm i bootswatch\r\nnpm i bootstrap-icons\r\n```\r\n\r\n## JSON Server\r\n\r\nInstall `json-server` globally:\r\n\r\n```\r\nnpm install -g json-server\r\n```\r\n\r\nAdd npm script in package.json file:\r\n\r\n```\r\n\"scripts\": {\r\n  \"server\": \"json-server server/db.json --config server/json-server.json\"\r\n}\r\n```\r\n\r\nRead about json-server from here https://www.npmjs.com/package/json-server.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzakimohammed%2Fng-notsey-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzakimohammed%2Fng-notsey-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzakimohammed%2Fng-notsey-app/lists"}