{"id":2463,"date":"2018-10-02T10:35:54","date_gmt":"2018-10-02T05:05:54","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=2463"},"modified":"2018-10-12T15:46:40","modified_gmt":"2018-10-12T10:16:40","slug":"angular-2-installation","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/","title":{"rendered":"Angular 2 installation"},"content":{"rendered":"<p>ANGULAR 2 INSTALLATION STEPS<br \/>\nStep 1.Download the node and install on your local machine using this link <strong>https:\/\/nodejs.org\/en\/<\/strong>.<\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/node-image.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2583 aligncenter\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/node-image.png\" alt=\"\" width=\"590\" height=\"419\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/09\/node-image.png 590w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/09\/node-image-300x213.png 300w\" sizes=\"auto, (max-width: 590px) 100vw, 590px\" \/><\/a><\/p>\n<p>Step 2. To install the Angular CLI:<br \/>\n<strong><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">npm install -g @angular\/cli<\/code><\/strong><\/p>\n<p>Step 3. Check the version of node and npm that also use to check whether installed or not.<\/p>\n<p style=\"text-align: center;\"><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/Screen-Shot-2018-09-19-at-11.38.47-PM.png\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-2582 aligncenter\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/Screen-Shot-2018-09-19-at-11.38.47-PM.png\" alt=\"\" width=\"640\" height=\"549\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/09\/Screen-Shot-2018-09-19-at-11.38.47-PM.png 1170w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/09\/Screen-Shot-2018-09-19-at-11.38.47-PM-300x257.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/09\/Screen-Shot-2018-09-19-at-11.38.47-PM-768x659.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/09\/Screen-Shot-2018-09-19-at-11.38.47-PM-1024x879.png 1024w\" sizes=\"auto, (max-width: 640px) 100vw, 640px\" \/><\/a><\/p>\n<p>Step 4. Generating and serving an Angular project via a development server Create and run a new project:<\/p>\n<p><strong><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">ng new project_name<\/code><\/strong><\/p>\n<p><strong><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">cd path_of_project<\/code><\/strong><\/p>\n<p><strong><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">                               ng serve<\/code><\/strong><\/p>\n<p>&nbsp;<\/p>\n<p>Step 5. Use this link <strong>http:\/\/localhost:4200\/<\/strong> to check whether the project has been working or not. The app will automatically reload if you change any of the source files.<\/p>\n<p>Step 6. Install mysql using this link <strong>https:\/\/dev.mysql.com\/downloads\/mysql\/<\/strong> and install.<\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/Screen-Shot-2018-09-20-at-12.00.55-AM.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-2585 aligncenter\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/Screen-Shot-2018-09-20-at-12.00.55-AM.png\" alt=\"\" width=\"642\" height=\"440\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/09\/Screen-Shot-2018-09-20-at-12.00.55-AM.png 2030w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/09\/Screen-Shot-2018-09-20-at-12.00.55-AM-300x206.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/09\/Screen-Shot-2018-09-20-at-12.00.55-AM-768x527.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/09\/Screen-Shot-2018-09-20-at-12.00.55-AM-1024x702.png 1024w\" sizes=\"auto, (max-width: 642px) 100vw, 642px\" \/><\/a><\/p>\n<p>Step 7. Check whether the node and npm has been installed successfully without any error.<br \/>\n<strong>\u00a0 <\/strong><strong><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">node -v<\/code><\/strong><\/p>\n<p><strong>\u00a0 <code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">npm -v<\/code><\/strong><\/p>\n<p>Step 8. Make sure that npm has been installed globally. Using\u00a0<code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">npm install -g @angular\/cli\u00a0<\/code>without -g npm will not install globally.<\/p>\n<p>Step 9. Create a new Angular 2 project. <code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">ng new project_name<\/code>. (This will probably take a few minutes belongs to the system performance.)<\/p>\n<p>Step 10. Create a new component by using the command of<br \/>\n<strong><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">ng generate component [component-name]<\/code><\/strong><\/p>\n<p>Step 11. Executing the command creates a folder, [component-name], in the project&#8217;s src\/app path or the current path the command is executed in if it&#8217;s a child folder of the project. The folder has the following:<br \/>\n<strong>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[component-name].component.ts the component class file\r\n[component-name].component.css for styling the component\r\n[component-name].component.html component html\r\n[component-name].component.spec.ts tests for the component\r\nIndex.ts<\/pre>\n<p>which exports the component<\/p>\n<p>Step 12. Do the design in the\u00a0<code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[component-name].component.html\u00a0<\/code>file for the interface.<\/p>\n<p>Step 13. Add the css design to the html interface using\u00a0<code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[component-name].component.css<\/code><\/p>\n<p>Step 14. Use the angular scripting to do the back end process which has been done on the html page using the<\/p>\n<p><code class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[component-name].component.ts.<\/code><\/p>\n<p>&nbsp;<\/p>\n<p>Step 15. Import all the header files which are necessary to compile the project. If any one of the header files is missing its not compile the project.<\/p>\n<p>Step 16. Use database which one you want and I am using mysql gives the DB connection for this we have to use the php file in the document root to mention the in my local machine the path is \/Library\/Webserver\/Documents.<\/p>\n<p>Step 17. Create the new php file and do the php connection in this file. If the connection is done we can able to push the data to the database.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>ANGULAR 2 INSTALLATION STEPS Step 1.Download the node and install on your local machine using this link https:\/\/nodejs.org\/en\/. Step 2. To install the Angular CLI: npm install -g @angular\/cli Step 3. Check the version of node and npm that also use to check whether installed or not. Step 4. Generating&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Angular 2 installation<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":{"0":"post-2463","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"ANGULAR 2 INSTALLATION STEPS Step 1.Download the node and install on your local machine using this link https:\/\/nodejs.org\/en\/. Step 2. To install the Angular CLI: npm install -g @angular\/cli Step 3. Check the version of node and npm that also use to check whether installed or not. Step 4. Generating&hellip; Continue Reading Angular 2 installation\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-02T05:05:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-10-12T10:16:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/node-image.png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/angular-2-installation\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/angular-2-installation\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Angular 2 installation\",\"datePublished\":\"2018-10-02T05:05:54+00:00\",\"dateModified\":\"2018-10-12T10:16:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/angular-2-installation\\\/\"},\"wordCount\":345,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/angular-2-installation\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2018\\\/09\\\/node-image.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/angular-2-installation\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/angular-2-installation\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/angular-2-installation\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/angular-2-installation\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/angular-2-installation\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2018\\\/09\\\/node-image.png\",\"datePublished\":\"2018-10-02T05:05:54+00:00\",\"dateModified\":\"2018-10-12T10:16:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/angular-2-installation\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/angular-2-installation\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/angular-2-installation\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2018\\\/09\\\/node-image.png\",\"contentUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2018\\\/09\\\/node-image.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/angular-2-installation\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Angular 2 installation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"ANGULAR 2 INSTALLATION STEPS Step 1.Download the node and install on your local machine using this link https:\/\/nodejs.org\/en\/. Step 2. To install the Angular CLI: npm install -g @angular\/cli Step 3. Check the version of node and npm that also use to check whether installed or not. Step 4. Generating&hellip; Continue Reading Angular 2 installation","og_url":"https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2018-10-02T05:05:54+00:00","article_modified_time":"2018-10-12T10:16:40+00:00","og_image":[{"url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/node-image.png","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Angular 2 installation","datePublished":"2018-10-02T05:05:54+00:00","dateModified":"2018-10-12T10:16:40+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/"},"wordCount":345,"commentCount":1,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/node-image.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/","url":"https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/node-image.png","datePublished":"2018-10-02T05:05:54+00:00","dateModified":"2018-10-12T10:16:40+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/#primaryimage","url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/node-image.png","contentUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/09\/node-image.png"},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/angular-2-installation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Angular 2 installation"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-DJ","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2463","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=2463"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2463\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=2463"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=2463"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=2463"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}