@zalando-fcp/content-insights-client
v4.0.0
Published
The content insights api client
Downloads
5
Readme
Content Insights API Client
Getting started
Install
with Npm
npm install --save @zalando-fcp/content-insights-client
Usage
import ContentInsightsApi from 'content-insights-client'
...
const client = new ContentInsightsApi('http://contents-insights-api-host/', 'MY_FCP_TENANT_ID')
...
Development
- Building
- Run
npm install
to get the project's dependencies - Run
npm run build
to produce minified version.
- Development mode
- Having all the dependencies installed run
npm run dev
. This command will generate an non-minified version and will run a watcher so you get the compilation on file change.
- Running the tests
- Run
npm run test
Scripts
npm run build
- produces production version under thelib
foldernpm run dev
- produces development version and runs a watchernpm run test
- well ... it runs the tests :)