The fashion insights platform javascript sdk
#### with NPM
```
npm install --save @fashioninsights-zalando/fcp-client
#### with Yarn
``
yarn add @fashioninsights-zalando/fcp-client
#### Content Insights Client
`
import { ContentInsightsClient } from '@fashioninsights-zalando/fcp-client'
...
const client = ContentInsightsClient({ host: 'http://fcp-host/', tenantID: 'MY_FCP_TENANT_ID' })
...
`
#### Influencers Client
`
import { InfluencersClient } from '@fashioninsights-zalando/fcp-client'
...
const client = InfluencersClient({ host: 'http://fcp-host/', tenantID: 'MY_FCP_TENANT_ID' })
...
`
#### Fashion Store Client
`
import { FashionStoreSearchDataClient } from '@fashioninsights-zalando/fcp-client'
...
const client = FashionStoreSearchDataClient({ host: 'http://fcp-host/', tenantID: 'MY_FCP_TENANT_ID' })
...
`
2. Building
* Run yarn to get the project's dependenciesyarn run build
* Run to produce minified version.yarn run dev
3. Development mode
* Having all the dependencies installed run . This command will generate an non-minified version and will run a watcher so you get the compilation on file change.yarn run test
4. Running the tests
* Run
* yarn run build - produces production version under the lib folderyarn run dev
* - produces development version and runs a watcheryarn run test` - well ... it runs the tests :)
*