JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 32
  • Score
    100M100P100Q68055F
  • License MIT

axios client for the JetBrains Space api

Package Exports

  • jetbrains-space-api
  • jetbrains-space-api/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (jetbrains-space-api) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

jetbrains-space-api

Axios client for the JetBrains Space API.

npm latest version npm next version npm beta version

Versions

Package Version Space Version
1.7.0 2023.2.0-DEV.162212
1.6.0 2023.2.0-DEV.157444
1.5.0 2023.2.0-DEV.150788
1.4.0 2023.1.0-DEV.147802
1.3.0 2022.2.0-DEV.113510
1.2.0 2022.2.0-DEV.108093
1.1.1 2022.2.0-DEV.105866
1.1.0 2022.2.0-DEV.105866
1.0.0 2022.2.0-DEV.104457

Install

$ npm install --save-dev jetbrains-space-api

Usage

Basic example for getting all projects.

const client = new SpaceApi(
  new Configuration({
    basePath: process.env.SPACE_API_URL,
    accessToken: process.env.SPACE_API_TOKEN
  })
);
const projects = await client.projectsGet();