@al/ingest v2.0.5
Repository with all the AL NEPAL Clients
Disclaimer
Until the release of version 1.0.0 all current minor version increments may be backwards incompatible. Please bear this in mind when developing against this library. Should you have any further questions, please do not hesitate to contact us as npm@alertlogic.com
Installation
npm install @al/package --saveUsage
var AlClient = require('@al/package').AlClient; //commonjs - e.g. node
import { AlClient } from '@al/package'; //ES2015 - e.g. Angular, TS projectsInteractive
Loads the library into memory and stays in an interactive node shell.
npm run interactiveNOTE - You must build the sources before running this command, see Building section below
Tests
npm testContributing
The sources are written in Typescript and follow the tslint airbnb style.
Building
To generate a production build
npm run buildTo generate a development build
npm run build-devBuilds will be be generated into a dist folder and will contain commonjs and umd bundles that will be consumed depending on the module system in whichever environment you are using.
To gererate build for a specific package, use the command:
PATH=$(cd ../.. && npm bin):$PATH npm run build