{"id":195329,"date":"2021-01-11T10:09:23","date_gmt":"2021-01-11T18:09:23","guid":{"rendered":"http:\/\/sharethis.com\/?page_id=195329"},"modified":"2025-11-14T08:41:33","modified_gmt":"2025-11-14T16:41:33","slug":"how-to-install-sharethis-module-for-your-angular-app","status":"publish","type":"page","link":"http:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/","title":{"rendered":"How to Install ShareThis Module for Your Angular App"},"content":{"rendered":"<p>We\u2019re happy to announce that ShareThis has built its own module for Angular! Follow the directions below to learn how you can install ShareThis Inline and Sticky Share Buttons onto your Angular apps\/sites.<\/p>\n\n\n\n<p>The Angular module for ShareThis buttons is available within our <a href=\"https:\/\/github.com\/sharethis-github\/sharethis-angular\" target=\"_blank\" rel=\"noreferrer noopener\">Git repository<\/a>, from <a href=\"https:\/\/www.npmjs.com\/package\/sharethis-angular\" target=\"_blank\" rel=\"noreferrer noopener\">NPMjs<\/a> or you can initiate via Angular CLI.\u00a0<\/p>\n\n\n\n<p><strong>Note:<\/strong> Your Angular version should be at least 14.1.0 for the module to be compatible.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li><strong>Initiate your project<\/strong> (Skip if you already have it). If you don\u2019t have angular cli, you can download it here: https:\/\/cli.angular.io\/. After downloading, run the following command to create your project: <br><code>ng new &lt;project-name&gt;<\/code><\/li><li><strong>Install sharethis-angular dependency<\/strong>: Go to your project folder: <br><code>cd &lt;project-name&gt;<\/code><\/li><li>Run the following command:<br><code>npm i sharethis-angular<\/code><\/li><li><strong>Finish installation and add the module<\/strong>: Once you\u2019ve completed installation, go to:<br><code>\/&lt;project-name&gt;\/src\/app\/app.module.ts<\/code><\/li><\/ol>\n\n\n\n<ul class=\"is-style-none wp-block-list\"><li>You will need to:<\/li><li><code>import { SharethisAngularModule } from 'sharethis-angular';<\/code><\/li><\/ul>\n\n\n\n<p><\/p>\n\n\n\n<ul class=\"is-style-none wp-block-list\"><li>and add <em>SharethisAngularModule<\/em> to imports<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>import { BrowserModule } from '@angular\/platform-browser';\nimport { NgModule } from '@angular\/core';\nimport { AppRoutingModule } from '.\/app-routing.module';\nimport { AppComponent } from '.\/app.component';\nimport { SharethisAngularModule } from 'sharethis-angular';\n\n@NgModule({\n  declarations: [\n    AppComponent\n  ],\n  imports: [\n    BrowserModule,\n    AppRoutingModule,\n    SharethisAngularModule\n  ],\n  providers: [],\n  bootstrap: [AppComponent]\n})\nexport class AppModule { }<\/code><\/pre>\n\n\n\n<p><strong>5. Start customizing via components<\/strong>: Now go to <br><code>&lt;project-name&gt;\/src\/app\/app.component.ts\u00a0<\/code><\/p>\n\n\n\n<p><strong>6. Create config for share buttons<\/strong>: Copy the <em>InlineShareButtonsConfig<\/em> below and create a config (see <a href=\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/?preview_id=195329&amp;preview_nonce=87df602850&amp;preview=true#:~:text=Other%20buttons%E2%80%99%20configurations%3A\">other buttons\u2019 configurations<\/a>).\u00a0We recommend storing the config in a separate file and import into the component you wish to use. Then all you will need to do is pass it to the component property.\u00a0<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-note\">Note<\/h3>\n\n\n\n<p>The Share Count is linked to the URL, if no URL is provided in the configuration attributes, it will use the URL where the buttons are located. Remember to customize or remove the URL in the example below.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\nimport { Component, OnInit } from '@angular\/core';\n\nconst InlineShareButtonsConfig = {\n  alignment: 'center', \/\/ alignment of buttons (left, center, right)\n  color: 'social', \/\/ set the color of buttons (social, white)\n  enabled: true, \/\/ show\/hide buttons (true, false)\n  font_size: 16, \/\/ font size for the buttons\n  labels: 'cta', \/\/ button labels (cta, counts, null)\n  language: 'en', \/\/ which language to use (see LANGUAGES)\n  networks: [\n    \/\/ which networks to include (see SHARING NETWORKS)\n    'whatsapp',\n    'linkedin',\n    'messenger',\n    'facebook',\n    'twitter',\n  ],\n  padding: 12, \/\/ padding within buttons (INTEGER)\n  radius: 4, \/\/ the corner radius on each button (INTEGER)\n  show_total: true,\n  size: 40, \/\/ the size of each button (INTEGER)\n\n  \/\/ OPTIONAL PARAMETERS\n\n  url: 'https:\/\/www.sharethis.com', \/\/ (defaults to current url)\n  image: 'https:\/\/bit.ly\/2CMhCMC', \/\/ (defaults to og:image or twitter:image)\n  description: 'custom text', \/\/ (defaults to og:description or twitter:description)\n  title: 'custom title', \/\/ (defaults to og:title or twitter:title)\n  message: 'custom email text', \/\/ (only for email sharing)\n  subject: 'custom email subject', \/\/ (only for email sharing)\n  username: 'custom twitter handle', \/\/ (only for twitter sharing)\n};\n\n@Component({\n  selector: 'app-root',\n  templateUrl: '.\/app.component.html',\n  styleUrls: ['.\/app.component.css'],\n})\n\nexport class AppComponent {\n  inlineShareButtonsConfig = InlineShareButtonsConfig;\n}\n<\/code><\/pre>\n\n\n\n<p>7. <strong>Add code to HTML<\/strong>: Now setup the HTML, go to:<br><code>&lt;project-name&gt;\/src\/app\/app.component.html<\/code>\u00a0<br>Add the following:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;st-inline-share-buttons [config]=\"inlineShareButtonsConfig\"&gt;&lt;\/st-inline-share-buttons&gt; <\/code><\/pre>\n\n\n\n<p>You can also set up other share buttons:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;st-inline-follow-buttons [config]=\"inlineFollowButtonsConfig\"&gt;&lt;\/st-inline-follow-buttons&gt;\n\n&lt;st-inline-reaction-buttons [config]=\"inlineReactionButtonsConfig\"&gt;&lt;\/st-inline-reaction-buttons&gt;\n    \n&lt;st-sticky-share-buttons [config]=\"stickyShareButtonsConfig\"&gt;&lt;\/st-sticky-share-buttons&gt; <\/code><\/pre>\n\n\n\n<p>8. The last step is to run:<br><code>ng serve<br><\/code><\/p>\n\n\n\n<p>9. Now view within the browser, go to <a href=\"http:\/\/localhost:4200\/\" target=\"_blank\" rel=\"noreferrer noopener\">http:\/\/localhost:4200\/<\/a> and the buttons should now appear.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-dots\">\n\n\n\n<p>Additionally, here are the configurations for our other buttons:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\n\/\/Sticky Share Buttons\n\nconst stickyShareButtonsConfig: StickyShareButtonsConfig={\n            alignment: 'left',    \/\/ alignment of buttons (left, right)\n            color: 'social',      \/\/ set the color of buttons (social, white)\n            enabled: true,        \/\/ show\/hide buttons (true, false)\n            font_size: 16,        \/\/ font size for the buttons\n            hide_desktop: false,  \/\/ hide buttons on desktop (true, false)\n            labels: 'counts',     \/\/ button labels (cta, counts, null)\n            language: 'en',       \/\/ which language to use (see LANGUAGES)\n            min_count: 0,         \/\/ hide react counts less than min_count (INTEGER)\n            networks: [           \/\/ which networks to include (see SHARING NETWORKS)\n              'linkedin',\n              'facebook',\n              'twitter',\n              'pinterest',\n              'email'\n            ],\n            padding: 12,          \/\/ padding within buttons (INTEGER)\n            radius: 4,            \/\/ the corner radius on each button (INTEGER)\n            show_total: true,     \/\/ show\/hide the total share count (true, false)\n            show_mobile: true,    \/\/ show\/hide the buttons on mobile (true, false)\n            show_toggle: true,    \/\/ show\/hide the toggle buttons (true, false)\n            size: 48,             \/\/ the size of each button (INTEGER)\n            top: 160,             \/\/ offset in pixels from the top of the page\n\n\n            \/\/ OPTIONAL PARAMETERS\n\n            url: 'https:\/\/www.sharethis.com', \/\/ (defaults to current url)\n            image: 'https:\/\/bit.ly\/2CMhCMC',  \/\/ (defaults to og:image or twitter:image)\n            description: 'custom text',       \/\/ (defaults to og:description or twitter:description)\n            title: 'custom title',            \/\/ (defaults to og:title or twitter:title)\n            message: 'custom email text',     \/\/ (only for email sharing)\n            subject: 'custom email subject',  \/\/ (only for email sharing)\n            username: 'custom twitter handle' \/\/ (only for twitter sharing)\n};\n\n\/\/ Inline Follow Buttons\n\nconst inlineFollowButtonsConfig: InlineFollowButtonsConfig = {\n            action: 'Follow us:', \/\/ call to action (STRING)\n            action_enabled: true,  \/\/ show\/hide call to action (true, false)\n            action_pos: 'bottom', \/\/ position of call to action (left, top, right)\n            alignment: 'center',  \/\/ alignment of buttons (left, center, right)\n            color: 'white',       \/\/ set the color of buttons (social, white)\n            enabled: true,        \/\/ show\/hide buttons (true, false)\n            networks: [           \/\/ which networks to include (see FOLLOW NETWORKS)\n              'twitter',\n              'facebook',\n              'instagram',\n              'youtube'\n            ],\n            padding: 8,           \/\/ padding within buttons (INTEGER)\n            profiles: {           \/\/ social profile links for buttons\n              twitter: 'sharethis',\n              facebook: 'sharethis',\n              instagram: 'sharethis',\n              youtube: '\/channel\/UCbM93niCmdc2RD9RZbLMP6A?view_as=subscriber'\n            },\n            radius: 9,            \/\/ the corner radius on each button (INTEGER)\n            size: 32,             \/\/ the size of each button (INTEGER)\n            spacing: 8            \/\/ the spacing between buttons (INTEGER)\n};\n\n\/\/ Inline Reaction Buttons\n\nconst inlineReactionButtonsConfig: InlineReactionButtonsConfig = {\n            alignment: 'center',  \/\/ alignment of buttons (left, center, right)\n            enabled: true,        \/\/ show\/hide buttons (true, false)\n            language: 'en',       \/\/ which language to use (see LANGUAGES)\n            min_count: 0,         \/\/ hide react counts less than min_count (INTEGER)\n            padding: 12,          \/\/ padding within buttons (INTEGER)\n            reactions: [          \/\/ which reactions to include (see REACTIONS)\n              'slight_smile',\n              'heart_eyes',\n              'laughing',\n              'astonished',\n              'sob',\n              'rage'\n            ],\n            size: 48,             \/\/ the size of each button (INTEGER)\n            spacing: 8,           \/\/ the spacing between buttons (INTEGER)\n\n            \/\/ OPTIONAL PARAMETERS\n\n            url: 'https:\/\/www.sharethis.com' \/\/ (defaults to current url)\n};<\/code><\/pre>\n\n\n\n<p><strong>Sharing Networks<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"900\" height=\"670\" src=\"https:\/\/sharethis.imgix.net\/2022\/10\/image-2.png?fm=webp&amp;auto=compress&amp;w=800q=1\" alt=\"\" class=\"wp-image-207968\" loading=\"eager\" srcset=\"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/image-2.png 900w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/image-2-300x223.png 300w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/image-2-768x572.png 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" \/><\/figure>\n\n\n\n<p><strong>Follow Networks<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"900\" height=\"497\" src=\"https:\/\/sharethis.imgix.net\/2022\/10\/image-1.png?fm=webp&amp;auto=compress&amp;w=800q=1\" alt=\"\" class=\"wp-image-207967\" loading=\"lazy\" srcset=\"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/image-1.png 900w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/image-1-300x166.png 300w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/image-1-768x424.png 768w\" sizes=\"auto, (max-width: 900px) 100vw, 900px\" \/><\/figure>\n\n\n\n<p><strong>Reaction Buttons<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img decoding=\"async\" src=\"https:\/\/sharethis.imgix.net\/2022\/10\/image.png?fm=webp&amp;auto=compress&amp;w=800q=1\" alt=\"\" class=\"wp-image-207966\" width=\"637\" height=\"112\" loading=\"lazy\" srcset=\"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/image.png 900w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/image-300x53.png 300w, http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/image-768x135.png 768w\" sizes=\"auto, (max-width: 637px) 100vw, 637px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>We\u2019re happy to announce that ShareThis has built its own module for Angular! Follow the directions below to learn how you can install ShareThis Inline and Sticky Share Buttons onto your Angular apps\/sites. The Angular module for ShareThis buttons is available within our Git repository, from NPMjs or you can initiate via Angular CLI.\u00a0 Note: [&hellip;]<\/p>\n","protected":false},"author":93,"featured_media":0,"parent":14951,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-templates\/page_single_support.php","meta":{"ghostkit_customizer_options":"","ghostkit_custom_css":"","ghostkit_custom_js_head":"","ghostkit_custom_js_foot":"","ghostkit_typography":"","footnotes":""},"class_list":["post-195329","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.9 (Yoast SEO v27.1.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install ShareThis Module in Angular | Complete Guide<\/title>\n<meta name=\"description\" content=\"Follow the directions below to learn how you can install Sharethis inline and sticky share buttons onto your Angular apps\/sites.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install ShareThis Module for Your Angular App\" \/>\n<meta property=\"og:description\" content=\"Follow the directions below to learn how you can install Sharethis inline and sticky share buttons onto your Angular apps\/sites.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/\" \/>\n<meta property=\"og:site_name\" content=\"ShareThis\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-14T16:41:33+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/image-2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"900\" \/>\n\t<meta property=\"og:image:height\" content=\"670\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/\",\"url\":\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/\",\"name\":\"Install ShareThis Module in Angular | Complete Guide\",\"isPartOf\":{\"@id\":\"https:\/\/sharethis.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/image-2.png\",\"datePublished\":\"2021-01-11T18:09:23+00:00\",\"dateModified\":\"2025-11-14T16:41:33+00:00\",\"description\":\"Follow the directions below to learn how you can install Sharethis inline and sticky share buttons onto your Angular apps\/sites.\",\"breadcrumb\":{\"@id\":\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/#primaryimage\",\"url\":\"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/image-2.png\",\"contentUrl\":\"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/image-2.png\",\"width\":900,\"height\":670},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/sharethis.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Support\",\"item\":\"https:\/\/sharethis.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Installation\",\"item\":\"https:\/\/sharethis.com\/support\/installation\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"How to Install ShareThis Module for Your Angular App\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/sharethis.com\/#website\",\"url\":\"https:\/\/sharethis.com\/\",\"name\":\"ShareThis\",\"description\":\"Grow your audience with easy-to-use sharing tools.\",\"publisher\":{\"@id\":\"https:\/\/sharethis.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/sharethis.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/sharethis.com\/#organization\",\"name\":\"ShareThis\",\"url\":\"https:\/\/sharethis.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/sharethis.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/sharethis.com\/wp-content\/uploads\/2019\/06\/ShareThisLogo2x-1.png\",\"contentUrl\":\"http:\/\/sharethis.com\/wp-content\/uploads\/2019\/06\/ShareThisLogo2x-1.png\",\"width\":414,\"height\":86,\"caption\":\"ShareThis\"},\"image\":{\"@id\":\"https:\/\/sharethis.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"SoftwareApplication\",\"applicationCategory\":\"SocialNetworkingApplication\",\"offers\":{\"@type\":\"Offer\",\"price\":\"0.00\",\"priceCurrency\":\"USD\",\"category\":\"free\"},\"operatingSystem\":\"Web\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Install ShareThis Module in Angular | Complete Guide","description":"Follow the directions below to learn how you can install Sharethis inline and sticky share buttons onto your Angular apps\/sites.","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:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/","og_locale":"en_US","og_type":"article","og_title":"How to Install ShareThis Module for Your Angular App","og_description":"Follow the directions below to learn how you can install Sharethis inline and sticky share buttons onto your Angular apps\/sites.","og_url":"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/","og_site_name":"ShareThis","article_modified_time":"2025-11-14T16:41:33+00:00","og_image":[{"width":900,"height":670,"url":"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/image-2.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/","url":"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/","name":"Install ShareThis Module in Angular | Complete Guide","isPartOf":{"@id":"https:\/\/sharethis.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/#primaryimage"},"image":{"@id":"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/#primaryimage"},"thumbnailUrl":"https:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/image-2.png","datePublished":"2021-01-11T18:09:23+00:00","dateModified":"2025-11-14T16:41:33+00:00","description":"Follow the directions below to learn how you can install Sharethis inline and sticky share buttons onto your Angular apps\/sites.","breadcrumb":{"@id":"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/#primaryimage","url":"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/image-2.png","contentUrl":"http:\/\/sharethis.com\/wp-content\/uploads\/2022\/10\/image-2.png","width":900,"height":670},{"@type":"BreadcrumbList","@id":"https:\/\/sharethis.com\/support\/installation\/how-to-install-sharethis-module-for-your-angular-app\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sharethis.com\/"},{"@type":"ListItem","position":2,"name":"Support","item":"https:\/\/sharethis.com\/support\/"},{"@type":"ListItem","position":3,"name":"Installation","item":"https:\/\/sharethis.com\/support\/installation\/"},{"@type":"ListItem","position":4,"name":"How to Install ShareThis Module for Your Angular App"}]},{"@type":"WebSite","@id":"https:\/\/sharethis.com\/#website","url":"https:\/\/sharethis.com\/","name":"ShareThis","description":"Grow your audience with easy-to-use sharing tools.","publisher":{"@id":"https:\/\/sharethis.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sharethis.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/sharethis.com\/#organization","name":"ShareThis","url":"https:\/\/sharethis.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sharethis.com\/#\/schema\/logo\/image\/","url":"http:\/\/sharethis.com\/wp-content\/uploads\/2019\/06\/ShareThisLogo2x-1.png","contentUrl":"http:\/\/sharethis.com\/wp-content\/uploads\/2019\/06\/ShareThisLogo2x-1.png","width":414,"height":86,"caption":"ShareThis"},"image":{"@id":"https:\/\/sharethis.com\/#\/schema\/logo\/image\/"}},{"@type":"SoftwareApplication","applicationCategory":"SocialNetworkingApplication","offers":{"@type":"Offer","price":"0.00","priceCurrency":"USD","category":"free"},"operatingSystem":"Web"}]}},"_links":{"self":[{"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/pages\/195329","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/users\/93"}],"replies":[{"embeddable":true,"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/comments?post=195329"}],"version-history":[{"count":1,"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/pages\/195329\/revisions"}],"predecessor-version":[{"id":210211,"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/pages\/195329\/revisions\/210211"}],"up":[{"embeddable":true,"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/pages\/14951"}],"wp:attachment":[{"href":"http:\/\/sharethis.com\/wp-json\/wp\/v2\/media?parent=195329"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}