ngx-json-ld
TypeScript icon, indicating that this package has built-in type declarations

0.3.1 • Public • Published

ngx-json-ld

A small component to easily bind JSON-LD schema to Angular templates.

Demo

Installation

To install this library, run:

$ npm install ngx-json-ld --save

and then from your Angular AppModule:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
 
import { AppComponent } from './app.component';
 
// Import library module
import { NgxJsonLdModule } from 'ngx-json-ld';
 
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    // Register module
    NgxJsonLdModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Component

Once the library is imported, you can use the ngx-json-ld component.

@Component({
  selector: 'app',
  template: `<ngx-json-ld [json]="schema"></ngx-json-ld>`
})
class AppComponent {
  schema = {
    '@context': 'http://schema.org',
    '@type': 'WebSite',
    'name': 'angular.io',
    'url': 'https://angular.io'
  };
}

Output

<ngx-json-ld>
  <script type="application/ld+json">
    {
      "@context": "http://schema.org",
      "@type": "WebSite",
      "name": "angular.io",
      "url": "https://angular.io"
    }
  </script>
</ngx-json-ld>

License

MIT © Cory Rylan

Readme

Keywords

none

Package Sidebar

Install

npm i ngx-json-ld

Weekly Downloads

472

Version

0.3.1

License

MIT

Unpacked Size

20.9 kB

Total Files

15

Last publish

Collaborators

  • splintercode