@chisquare-tech/ngx-polylog
v0.2.13
Published
## JSX Polylog NG
Readme
Chisquare
JSX Polylog NG
Introduction
This is the Angular SDK for chisquare platform. It covers APIs for the following services:
- Events
- Files
- Forms
- Jobs
- Logs
- Messages
- Fuss
- Webhooks
Supported Platforms
- Browser
- Node.js (Javascript/Typescript)
Installation
- NPM
$ npm i @chisquare-tech/ngx-polylogUsage & API
- Import Module
import { EventModule } from '@chisquare-tech/ngx-polylog'
imports:[
...
EventModule.register({
// config
}),
...
]- Import Service
import { EventService } from '@chisquare-tech/ngx-polylog'
...
private readonly eventService = inject(EventService);
OR
constructor(
private readonly eventService: EventService,
){}
...Build
Run ng build polylog to build the project. The build artifacts will be stored in the dist/ directory.
Publishing
After building your library with ng build polylog, go to the dist folder cd dist/polylog and run npm publish.
Running unit tests
Run ng test polylog to execute the unit tests via Karma.
Further help
To get more help on the Angular CLI use ng help or go check out the Angular CLI Overview and Command Reference page.
