# zeus-sdk
**Repository Path**: mirrors_getsentry/zeus-sdk
## Basic Information
- **Project Name**: zeus-sdk
- **Description**: JavaScript SDK for Zeus.
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-09-24
- **Last Updated**: 2026-02-22
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Zeus JavaScript SDK
[](https://travis-ci.org/getsentry/zeus-sdk)
[](https://github.com/getsentry/zeus-sdk/releases/latest)
[](https://www.npmjs.com/package/@zeus-ci/sdk)
[](https://github.com/getsentry/zeus-sdk/blob/master/LICENSE)
JavaScript API client for [Zeus](https://github.com/getsentry/zeus).
## Installation
The CLI comes as NPM package and can be installed via npm or yarn:
```bash
npm install -g @zeus-ci/sdk
yarn add -g @zeus-ci/sdk
```
## Development
This SDK is built with [TypeScript](https://www.typescriptlang.org/). After
installing dependencies, your workspace should contain all tools necessary to
develop, test and build the project. See `package.json` for all scripts:
```sh
# Install dependencies
yarn
# Run test watchers
yarn test:watch
# Build JavaScript sources
yarn build
```
We use [prettier](https://prettier.io/) for auto-formatting and
[tslint](https://palantir.github.io/tslint/) as linter. Both tools can
automatically fix a lot of issues for you. To invoke them, simply run:
```sh
yarn fix
```
It is highly recommended to use VSCode and install the suggested extensions.
They will configure your IDE to match the coding style, invoke auto formatters
every time you save and run tests in the background for you. No need to run the
watchers manually.