![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@cognite/sdk
Advanced tools
The package `@cognite/sdk` provides convenient access to the stable [Cognite API](https://doc.cognitedata.com/dev/) from applications written in client- or server-side javascript.
The package @cognite/sdk
provides convenient access to the stable Cognite API
from applications written in client- or server-side javascript.
The SDK supports authentication through bearer tokens. See Authentication Guide.
Install the package with yarn:
$ yarn add @cognite/sdk
or npm
$ npm install @cognite/sdk --save
const { CogniteClient } = require('@cognite/sdk');
import { CogniteClient } from '@cognite/sdk';
The SDK is written in native typescript, so no extra types need to be defined.
import { CogniteClient } from '@cognite/sdk';
async function quickstart() {
const project = 'publicdata';
const oidcTokenProvider = async () => {
return 'YOUR_OIDC_ACCESS_TOKEN';
};
const client = new CogniteClient({
appId: 'YOUR APPLICATION NAME',
project,
oidcTokenProvider,
});
const assets = await client.assets.list().autoPagingToArray({ limit: 100 });
}
quickstart();
For more details about SDK authentication see this document. Also, more comprehensive intro guide can be found here
const { CogniteClient } = require('@cognite/sdk');
async function quickstart() {
const client = new CogniteClient({
appId: 'YOUR APPLICATION NAME',
oidcTokenProvider: () => Promise.resolve('YOUR_OIDC_ACCESS_TOKEN'),
});
const assets = await client.assets.list().autoPagingToArray({ limit: 100 });
}
quickstart();
We highly recommend avoiding importing anything from internal SDK modules.
All interfaces and functions should only be imported from the top level, otherwise you might face compatibility issues when our internal structure changes.
Bad:
import { CogniteAsyncIterator } from '@cognite/sdk/dist/src/autoPagination'; // ❌
import { AssetsAPI } from '@cognite/sdk/dist/src/resources/assets/assetsApi'; // ❌
let assetsApi: AssetsAPI; // ❌
Good:
import { CogniteAsyncIterator } from '@cognite/sdk'; // ✅
let assetsApi: CogniteClient['assets']; // ✅
We recommend the usage of eslint to ensure this best practice is enforced without having to memorize the patterns:
.eslintrc.json:
"rules": {
"no-restricted-imports": ["error", { "patterns": ["@cognite/sdk/**"] }]
}
The API reference documentation contains snippets for each endpoint, giving examples of SDK use. See also the samples section in this repo.
1.x.x
to version 2.x.x
.2.x.x
to version 3.x.x
.FAQs
The package `@cognite/sdk` provides convenient access to the stable [Cognite API](https://doc.cognitedata.com/dev/) from applications written in client- or server-side javascript.
The npm package @cognite/sdk receives a total of 4,170 weekly downloads. As such, @cognite/sdk popularity was classified as popular.
We found that @cognite/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.