1.7.0 • Published 2 years ago
jetbrains-space-api v1.7.0
jetbrains-space-api
Axios client for the JetBrains Space API.
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-apiUsage
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();