{"id":22267,"date":"2015-07-02T01:15:13","date_gmt":"2015-07-01T19:45:13","guid":{"rendered":"https:\/\/tothenewco.pro\/blog\/?p=22267"},"modified":"2017-08-03T13:19:46","modified_gmt":"2017-08-03T07:49:46","slug":"lets-know-more-about-angular-module","status":"publish","type":"post","link":"https:\/\/tothenewco.pro\/blog\/lets-know-more-about-angular-module\/","title":{"rendered":"Lets know more about angular module"},"content":{"rendered":"<p>Modularizing your application is a good practice because it makes the components reusable, configurable and testable.<\/p>\n<p>As we know that angular is on the global scope itself whereas angular.module is a global place to create, register or retrieve angular modules. In other words, \u00a0angular.module is a container for other units of your angular application like services, controllers, providers, constants etc.<\/p>\n<p>[js]<br \/>\n angular.module(name, [requires], [configFn]);<br \/>\n[\/js]<\/p>\n<p>angular.module must have a name. It can also contains dependencies enclosed in brackets ([]) as second parameter and an optional configurable function.<\/p>\n<p><strong>\u00a0NOTE:<\/strong> If dependencies brackets ([]) are specified then new module is being created. Otherwise the module is being retrieved for further configuration.<\/p>\n<p>[js]<br \/>\nangular.module(&#8216;myAppModule_1&#8217;, []).service(&#8216;service_1&#8217;,function(){});<br \/>\n[\/js]<\/p>\n<p>It creates a new module having name myAppModule_1 and service &#8216;service_1&#8217;.<\/p>\n<p>&nbsp;<\/p>\n<p>[js]<br \/>\nangular.module(&#8216;myAppModule_1&#8217;, []).service(&#8216;service_2&#8217;,function(){});<br \/>\n[\/js]<\/p>\n<p>It overwrites module &#8216;myAppModule_1&#8217; by creating a new module having name myAppModule_1 and service &#8216;service_2&#8217;.<\/p>\n<p>&nbsp;<\/p>\n<p>[js]<br \/>\nangular.module(&#8216;myAppModule_1&#8217;).service(&#8216;service_3&#8217;,function(){});<br \/>\n[\/js]<\/p>\n<p>It will update module &#8216;myAppModule_1&#8217; adding a new service &#8216;service_3&#8217;.<\/p>\n<p><strong>Best Practice to create an angular.module<\/strong><\/p>\n<p>[js]<br \/>\n\/\/NOTE: the immediately invoked function expression is used to exemplify different files and is not required<br \/>\n(function(){<br \/>\n\/\/using the function form of use-strict<br \/>\n&quot;use strict&quot;;<br \/>\n\/\/Pass a second parameter ONLY THIS ONE TIME because<br \/>\n\/\/Re-declaration of second parameter creates bugs which are difficult to detect<br \/>\n     angular.module(&#8216;myApp&#8217;, [&#8216;ngResource&#8217;, &#8216;ngAnimate\u2019]);<\/p>\n<p>     &#8230;<br \/>\n})();<br \/>\n[\/js]<\/p>\n<p>Angular module contains the following core types of objects and components, which can be injected into each other <a title=\"Angular Development\" href=\"https:\/\/tothenewco.pro\/front-end-angularjs-development\">using AngularJS dependency<\/a> injection mechanism :<\/p>\n<ul>\n<li>Value<\/li>\n<li>Constant<\/li>\n<li>Provider<\/li>\n<li>Factory and<\/li>\n<li>Service.<\/li>\n<\/ul>\n<p>We&#8217;ll discuss these later.<strong><strong>\u00a0<\/strong><\/strong><\/p>\n<p><b>There are \u00a0two types of blocks:<\/b><\/p>\n<p><b>\u00a0 \u00a0 Config block <\/b>: This is the place where application-wide stuff is configured, which needs to be performed on module loading. Only providers and constants can be injected here.<\/p>\n<p>[js]<br \/>\n(function(){<br \/>\n\/\/ using the function form of use-strict<br \/>\n&quot;use strict&quot;;<br \/>\n\/\/ accessing the module in another file by calling angular.module without the brackets([]).<br \/>\n  angular.module(&#8216;mymod&#8217;)<br \/>\n    .config([&#8216;$provide&#8217;, function ($provide) {<\/p>\n<p>     &#8230;<br \/>\n    }])<br \/>\n})();<br \/>\n[\/js]<\/p>\n<p><b>\u00a0 \u00a0 Run blocks <\/b>: They get executed after the injector is created and you would configure further system configuration here. Only instances and constants can be injected here.<\/p>\n<p>[js]<br \/>\n(function(){<br \/>\n&quot;use strict&quot;;<br \/>\n  angular.module(&#8216;mymod&#8217;)<br \/>\n    .run([&#8216;$rootScope&#8217;, function ($rootScope) {<\/p>\n<p>        &#8230;<br \/>\n    }])<br \/>\n})();<br \/>\n[\/js]<\/p>\n<p><a href=\"https:\/\/tothenewco.pro\/blog\/building-intuitive-frontend-interfaces-with-angularjs\/\">Building Intuitive Frontend Interfaces with AngularJS\u00a0<\/a><\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Modularizing your application is a good practice because it makes the components reusable, configurable and testable. As we know that angular is on the global scope itself whereas angular.module is a global place to create, register or retrieve angular modules. In other words, \u00a0angular.module is a container for other units of your angular application like [&hellip;]<\/p>\n","protected":false},"author":137,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":2,"footnotes":""},"categories":[1439,3429,1],"tags":[3955,955,4697,55],"class_list":["post-22267","post","type-post","status-publish","format-standard","hentry","category-angular","category-front-end-development","category-technology","tag-angular-development","tag-angularjs","tag-angularjs-development-company","tag-javascript"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Modularizing your application is a good practice because it makes the components reusable, configurable and testable. As we know that angular is on the global scope itself whereas angular.module is a global place to create, register or retrieve angular modules. In other words, angular.module is a container for other units of your angular application like\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Sandeep Kumar\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/tothenewco.pro\/blog\/lets-know-more-about-angular-module\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Lets know more about angular module | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Modularizing your application is a good practice because it makes the components reusable, configurable and testable. As we know that angular is on the global scope itself whereas angular.module is a global place to create, register or retrieve angular modules. In other words, angular.module is a container for other units of your angular application like\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/tothenewco.pro\/blog\/lets-know-more-about-angular-module\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"article:tag\" content=\"angularjs\" \/>\n\t\t<meta property=\"article:tag\" content=\"front end development\" \/>\n\t\t<meta property=\"article:tag\" content=\"technology\" \/>\n\t\t<meta property=\"article:tag\" content=\"angular development\" \/>\n\t\t<meta property=\"article:tag\" content=\"angularjs development company\" \/>\n\t\t<meta property=\"article:tag\" content=\"javascript\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2015-07-01T19:45:13+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2017-08-03T07:49:46+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Lets know more about angular module | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Modularizing your application is a good practice because it makes the components reusable, configurable and testable. As we know that angular is on the global scope itself whereas angular.module is a global place to create, register or retrieve angular modules. In other words, angular.module is a container for other units of your angular application like\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/lets-know-more-about-angular-module\\\/#article\",\"name\":\"Lets know more about angular module | TO THE NEW Blog\",\"headline\":\"Lets know more about angular module\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/sandeep-kumar\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2015-07-02T01:15:13+05:30\",\"dateModified\":\"2017-08-03T13:19:46+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/lets-know-more-about-angular-module\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/lets-know-more-about-angular-module\\\/#webpage\"},\"articleSection\":\"AngularJS, Front End Development, Technology, angular development, AngularJS, AngularJS Development Company, javascript\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/lets-know-more-about-angular-module\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/lets-know-more-about-angular-module\\\/#listItem\",\"name\":\"Lets know more about angular module\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/lets-know-more-about-angular-module\\\/#listItem\",\"position\":3,\"name\":\"Lets know more about angular module\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/sandeep-kumar\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/sandeep-kumar\\\/\",\"name\":\"Sandeep Kumar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/lets-know-more-about-angular-module\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c2037ba78dae91bb486e31ae9232a9cc38d448b628649a56415692a329bf6c59?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Sandeep Kumar\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/lets-know-more-about-angular-module\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/lets-know-more-about-angular-module\\\/\",\"name\":\"Lets know more about angular module | TO THE NEW Blog\",\"description\":\"Modularizing your application is a good practice because it makes the components reusable, configurable and testable. As we know that angular is on the global scope itself whereas angular.module is a global place to create, register or retrieve angular modules. In other words, angular.module is a container for other units of your angular application like\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/lets-know-more-about-angular-module\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/sandeep-kumar\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/sandeep-kumar\\\/#author\"},\"datePublished\":\"2015-07-02T01:15:13+05:30\",\"dateModified\":\"2017-08-03T13:19:46+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Lets know more about angular module | TO THE NEW Blog","description":"Modularizing your application is a good practice because it makes the components reusable, configurable and testable. As we know that angular is on the global scope itself whereas angular.module is a global place to create, register or retrieve angular modules. In other words, angular.module is a container for other units of your angular application like","canonical_url":"https:\/\/tothenewco.pro\/blog\/lets-know-more-about-angular-module\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tothenewco.pro\/blog\/lets-know-more-about-angular-module\/#article","name":"Lets know more about angular module | TO THE NEW Blog","headline":"Lets know more about angular module","author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/sandeep-kumar\/#author"},"publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"},"datePublished":"2015-07-02T01:15:13+05:30","dateModified":"2017-08-03T13:19:46+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/tothenewco.pro\/blog\/lets-know-more-about-angular-module\/#webpage"},"isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/lets-know-more-about-angular-module\/#webpage"},"articleSection":"AngularJS, Front End Development, Technology, angular development, AngularJS, AngularJS Development Company, javascript"},{"@type":"BreadcrumbList","@id":"https:\/\/tothenewco.pro\/blog\/lets-know-more-about-angular-module\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","position":1,"name":"Home","item":"https:\/\/tothenewco.pro\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/tothenewco.pro\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/lets-know-more-about-angular-module\/#listItem","name":"Lets know more about angular module"},"previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/lets-know-more-about-angular-module\/#listItem","position":3,"name":"Lets know more about angular module","previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/tothenewco.pro\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/tothenewco.pro\/blog\/"},{"@type":"Person","@id":"https:\/\/tothenewco.pro\/blog\/author\/sandeep-kumar\/#author","url":"https:\/\/tothenewco.pro\/blog\/author\/sandeep-kumar\/","name":"Sandeep Kumar","image":{"@type":"ImageObject","@id":"https:\/\/tothenewco.pro\/blog\/lets-know-more-about-angular-module\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/c2037ba78dae91bb486e31ae9232a9cc38d448b628649a56415692a329bf6c59?s=96&d=mm&r=g","width":96,"height":96,"caption":"Sandeep Kumar"}},{"@type":"WebPage","@id":"https:\/\/tothenewco.pro\/blog\/lets-know-more-about-angular-module\/#webpage","url":"https:\/\/tothenewco.pro\/blog\/lets-know-more-about-angular-module\/","name":"Lets know more about angular module | TO THE NEW Blog","description":"Modularizing your application is a good practice because it makes the components reusable, configurable and testable. As we know that angular is on the global scope itself whereas angular.module is a global place to create, register or retrieve angular modules. In other words, angular.module is a container for other units of your angular application like","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/tothenewco.pro\/blog\/lets-know-more-about-angular-module\/#breadcrumblist"},"author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/sandeep-kumar\/#author"},"creator":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/sandeep-kumar\/#author"},"datePublished":"2015-07-02T01:15:13+05:30","dateModified":"2017-08-03T13:19:46+05:30"},{"@type":"WebSite","@id":"https:\/\/tothenewco.pro\/blog\/#website","url":"https:\/\/tothenewco.pro\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"article","og:title":"Lets know more about angular module | TO THE NEW Blog","og:description":"Modularizing your application is a good practice because it makes the components reusable, configurable and testable. As we know that angular is on the global scope itself whereas angular.module is a global place to create, register or retrieve angular modules. In other words, angular.module is a container for other units of your angular application like","og:url":"https:\/\/tothenewco.pro\/blog\/lets-know-more-about-angular-module\/","og:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","article:tag":{"0":"angularjs","1":"front end development","2":"technology","3":"angular development","5":"angularjs development company","6":"javascript"},"article:published_time":"2015-07-01T19:45:13+00:00","article:modified_time":"2017-08-03T07:49:46+00:00","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Lets know more about angular module | TO THE NEW Blog","twitter:description":"Modularizing your application is a good practice because it makes the components reusable, configurable and testable. As we know that angular is on the global scope itself whereas angular.module is a global place to create, register or retrieve angular modules. In other words, angular.module is a container for other units of your angular application like","twitter:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"22267","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"article","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-30 02:18:12","updated":"2024-02-29 09:12:49","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tLets know more about angular module\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/tothenewco.pro\/blog"},{"label":"Technology","link":"https:\/\/tothenewco.pro\/blog\/category\/technology\/"},{"label":"Lets know more about angular module","link":"https:\/\/tothenewco.pro\/blog\/lets-know-more-about-angular-module\/"}],"_links":{"self":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/22267","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/users\/137"}],"replies":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/comments?post=22267"}],"version-history":[{"count":0,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/22267\/revisions"}],"wp:attachment":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/media?parent=22267"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/categories?post=22267"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/tags?post=22267"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}