{"id":20076910,"url":"https://github.com/aakashdeveloper/edu_apr_ang_mrng","last_synced_at":"2025-07-06T03:40:46.951Z","repository":{"id":34790663,"uuid":"183728028","full_name":"Aakashdeveloper/EDU_APR_ANG_MRNG","owner":"Aakashdeveloper","description":null,"archived":false,"fork":false,"pushed_at":"2023-01-07T05:36:50.000Z","size":2654,"stargazers_count":11,"open_issues_count":143,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-03-02T18:02:54.000Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/Aakashdeveloper.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}},"created_at":"2019-04-27T04:29:21.000Z","updated_at":"2023-01-31T17:16:01.000Z","dependencies_parsed_at":"2023-01-15T09:15:53.098Z","dependency_job_id":null,"html_url":"https://github.com/Aakashdeveloper/EDU_APR_ANG_MRNG","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aakashdeveloper%2FEDU_APR_ANG_MRNG","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aakashdeveloper%2FEDU_APR_ANG_MRNG/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aakashdeveloper%2FEDU_APR_ANG_MRNG/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aakashdeveloper%2FEDU_APR_ANG_MRNG/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Aakashdeveloper","download_url":"https://codeload.github.com/Aakashdeveloper/EDU_APR_ANG_MRNG/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224470981,"owners_count":17316708,"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":[],"created_at":"2024-11-13T15:05:02.835Z","updated_at":"2024-11-13T15:05:03.605Z","avatar_url":"https://github.com/Aakashdeveloper.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EDU_APR_ANG_MRNG\n\nhttps://code.visualstudio.com/\nhttps://nodejs.org/en/\nhttps://github.com/\nhttps://git-scm.com/downloads\n\npackages\n\nnpmjs.com\n\nJSON\nJavascript object notation\n[\n    {\n        name:\"john\",\n        class:\"ui\"\n    },\n    {\n        name:\"bill\",\n        class:\"Ai\"\n    }\n]\n\npackage.JSON\n\nlocal package\nglobal package\n\n/********************************\n   Step to create package.JSON\n********************************/\n\nstep1\u003e npm init\nstep2\u003e  Answer the question\n{\n  \"name\": \"myapp\",\n  \"version\": \"1.0.0\",\n  \"description\": \"this is about the packge\",\n  \"main\": \"index.js\",\n  \"scripts\": {\n    \"test\": \"echo \\\"Error: no test specified\\\" \u0026\u0026 exit 1\"\n  },\n  \"keywords\": [\n    \"node\",\n    \"angular\"\n  ],\n  \"author\": \"Edureka\",\n  \"license\": \"ISC\"\n}\nstep 3\u003e yes and hit enter\n\n/****************************\n    Step to install package locally\n******************************/\n\nnpm install @aakashdeveloper/create-node-app\n\n/****************************\n    Step to install package globaly\n******************************/\n\nnpm install -g @angular/cli\n\n\u003e for win run cmd as admin\nnpm install -g @angular/cli\n\n\u003e for mac use sudo\nsudo npm install -g @angular/cli\n\nto start application or build the\n\n/******************************\n    Step to setup angular\n******************************/\nstep 1 \u003e npm install -g @angular/cli\nsetp 2 \u003e create a folder for app\nsetp 3 \u003e go inside the folder\nsetp 4 \u003e ng new firstapp  \nafter that press enter 2 times\nstep 5 \u003e cd firstapp\nstep 6 \u003e npm start\nstep 7 \u003e http://localhost:4200\n\n/************************\n    Command to Start app\n************************/\nStep 1\u003e Go inside the folder\nStep 2\u003e npm start/ng serve/ng serve --port 8800\n\n/*********************************\n    Building Block of Angular\n*********************************/\nName       |    Description                          |  Import\n----------------------------------------------------------------\nModule     =\u003e All Declarations done here             =\u003e NgModule       \nComponent  =\u003e That contains html, css and your logic =\u003e Component\nPipe       =\u003e Help to do run time data change        =\u003e Pipe, Pipetransform\nService    =\u003e That connect to third party or api's   =\u003e Injectable\nRouting    =\u003e To manage the pages  and menubar       =\u003e NgModule\n\n\u003e One Main Module\n\u003e One Main Component\n\n\n/*********************************\n   Step to create first Component\n*********************************/\n\nStep 1\u003e Make main module file (app.module.ts)\nStep 2\u003e Make main component file (app.component.ts)\nStep 3\u003e Declare main component in app.module.ts \n        in bootstrap and Declarations array\nstep 4\u003e Add selector name of component in index.html inside body\n\n\n/*********************************\n   File Description\n*********************************/\n\nName             | Importance  |      Description\ntslint.json         imp        =\u003e Angular Standerd to write code \ntsconfig.json       imp        =\u003e Help to transpile .ts =\u003e .js\nReadme.md           not imp    =\u003e Description or step for application\npackage.json        imp        =\u003e contains Description and package name and start commands\npackage-lock.json   not imp    =\u003e Child depedency \nangular.json        imp        =\u003e All paths and Standerd of my app \n.gitignore          not imp    =\u003e This will not let thing to push on git\n.editorconfig       not imp    =\u003e Same code Standerd accros the team\n------------------------\nsrc\u003e \napp             | imp         =\u003e All app building happen in this folder\nassets          | not imp     =\u003e All static thing like images, css\nenvironments    | imp         =\u003e Specify which imp app is building\nbrowserlist     | imp         =\u003e list of browsers\nfavicon         | imp         =\u003e icon in the title of website\nindex.html      | imp         =\u003e Main html file\nmain.ts         | imp         =\u003e main file which tell which module is main module\nstyle.css       | not imp     =\u003e to implement any style accros the app\n\n/*********************************\n   Flow of the app\n*********************************/\n\nangular.json =\u003e src/main.ts =\u003e scr/app.module.ts =\u003e src/app.component.ts\n      \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faakashdeveloper%2Fedu_apr_ang_mrng","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faakashdeveloper%2Fedu_apr_ang_mrng","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faakashdeveloper%2Fedu_apr_ang_mrng/lists"}