JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q32097F
  • License MIT

LiveChat component for Angular2

Package Exports

  • angular2-livechat

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (angular2-livechat) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

angular2-livechat

Angular2 component to integrate LiveChat with your single-page app

Install

npm install --save angular2-livechat

Usage

import {LiveChat} from 'angular2-livechat';

@Component({
  selector: 'app',
  template: `
    <livechat
      [license]="007"
      [entityDetails]="{ name: 'John' }"
    ></livechat>
  `,
  directives: [LiveChat]  
})
class App {}