jellyfin-sdk-typescript/docs
2021-09-16 11:36:56 -04:00
..
classes Remove models entry point for docs 2021-09-16 11:36:56 -04:00
enums Remove models entry point for docs 2021-09-16 11:36:56 -04:00
interfaces Remove models entry point for docs 2021-09-16 11:36:56 -04:00
modules Remove models entry point for docs 2021-09-16 11:36:56 -04:00
modules.md Remove models entry point for docs 2021-09-16 11:36:56 -04:00
README.md Update docs 2021-09-15 01:31:47 -04:00

jellyfin-sdk-typescript / Modules

jellyfin-sdk-typescript

A TypeScript SDK for Jellyfin.

Warning: This project is under active development and is not ready for production use. API changes will occur.

Usage

// Create a new instance of the SDK
const jellyfin = new Jellyfin();
const api = jellyfin.createApi(new Configuration({
    basePath: 'https://demo.jellyfin.org/stable'
}));

// Each API endpoint is exposed via a getter on the SDK instance using
// a shared Configuration and Axios instance. For example the /System APIs
// are available as api.systemApi.

// Fetch the public system info
const info = await api.systemApi.getPublicSystemInfo();
console.log('Info =>', info.data);

// Fetch the list of public users
const users = await api.userApi.getPublicUsers();
console.log('Users =>', users.data);

// A helper method for authentication has been added to the SDK because
// the default method exposed in the generated Axios client is rather
// cumbersome to use.
const auth = await api.authenticateUserByName({ Username: 'demo', Pw: '' });
console.log('Auth =>', auth.data);