10.5.0 • Published 12 days ago

@kontent-ai/core-sdk v10.5.0

Weekly downloads
-
License
MIT
Repository
github
Last release
12 days ago

npm version Build & Test npm Known Vulnerabilities GitHub license npm.io

Core package

This package contains core functionality used by dependant Kontent.ai SDKs such as Delivery SDK or Management SDK.

Testing

If you want to inject testing service as an implementation of IHttpService, it is possible to use configurable Test Http Service.

import { TestHttpService } from '@kontent-ai/core-sdk';

const client = new /*(Delivery/Management)*/Client() {
    // ...
    httpService: new TestHttpService({
        fakeResponseJson: json,
        throwError: false
    });
}