@circleci/circleci-config-sdk
Version:
An SDK for building CircleCI Configuration files with JavaScript.
171 lines (127 loc) • 5.66 kB
Markdown
**This repo is no longer maintained, supported, or monitored by CircleCI. It will be archived in the next 90 days. It can be forked for those that would like to continue using it.**
**This SDK is provided on an ‘as-is’ and ‘as available’ basis without any warranties of any kind. CircleCI disclaims all warranties, express or implied, including, but not limited to, all implied warranties of merchantability, title, fitness for a particular purpose, and noninfringement.**
[](https://github.com/CircleCI-Public/circleci-config-sdk-ts/blob/main/LICENSE)
[](https://app.circleci.com/pipelines/github/CircleCI-Public/circleci-config-sdk-ts)
[](https://www.npmjs.com/package/@circleci/circleci-config-sdk)
[](https://codecov.io/gh/CircleCI-Public/circleci-config-sdk-ts)
[](https://www.npmjs.com/package/@circleci/circleci-config-sdk)

Create and manage your [CircleCI](https://circleci.com/) configuration files with JavaScript and
TypeScript.
- [CircleCI Config SDK](
- [Table of Contents](
- [Getting Started](
- [Installation](
- [Usage](
- [Example](
- [Getting Help](
- [Resources](
- [Contributing](
- [Related](
📖 [Getting Started Wiki](https://github.com/CircleCI-Public/circleci-config-sdk-ts/wiki)
📖 [SDK API Docs](https://circleci-public.github.io/circleci-config-sdk-ts/)
💻 [Examples](https://github.com/CircleCI-Public/circleci-config-sdk-ts/tree/main/sample)
---
Using npm:
```shell
$ npm i @circleci/circleci-config-sdk
```
Using yarn:
```shell
$ yarn add @circleci/circleci-config-sdk
```
In Browser:
```typescript
import CircleCI from '@circleci/circleci-config-sdk';
```
In Node.js:
```javascript
const CircleCI = require('@circleci/circleci-config-sdk');
```
Generate a CircleCI config using TypeScript/Javascript, properly typed for full
IntelliSense support.
```typescript
const CircleCI = require('@circleci/circleci-config-sdk');
// Instantiate new Config
const myConfig = new CircleCI.Config();
// Create new Workflow
const myWorkflow = new CircleCI.Workflow('myWorkflow');
myConfig.addWorkflow(myWorkflow);
// Create an executor instance
// Executors are used directly in jobs
// and do not need to be added to the config separately
const nodeExecutor = new CircleCI.executors.DockerExecutor('cimg/node:lts');
// Create Job and add it to the config
const nodeTestJob = new CircleCI.Job('node-test', nodeExecutor);
myConfig.addJob(nodeTestJob);
// Add steps to job
nodeTestJob
.addStep(new CircleCI.commands.Checkout())
.addStep(
new CircleCI.commands.Run({
command: 'npm install',
name: 'NPM Install',
}),
)
.addStep(
new CircleCI.commands.Run({
command: 'npm run test',
name: 'Run tests',
}),
);
// Add Jobs to Workflow
myWorkflow.addJob(nodeTestJob);
// The `stringify()` function on `CircleCI.Config` will return the CircleCI YAML equivalent.
const MyYamlConfig = myConfig.stringify();
// Save the config to a file in Node.js or the browser. Note, use in the browser requires user interaction.
myConfig.writeFile('config.yml');
```
`MyYamlConfig` will hold the following string (A valid CircleCI Config).
```yaml
version: 2.1
setup: false
jobs:
node-test:
docker:
- image: cimg/node:lts
resource_class: medium
steps:
- checkout: {}
- run:
command: npm install
name: NPM Install
- run:
command: npm run test
name: Run tests
workflows:
myWorkflow:
jobs:
- node-test: {}
```
This open-source project utilized GitHub issues and project boards to manage
requests and support.
If you can not find an answer to your question in an existing
[](https://github.com/CircleCI-Public/circleci-config-sdk-ts/issues?q=),
you may open a new issue with the appropriate template. Issues are the best way
for the CircleCI team and the open-source community to track and interact with
your questions.
Consider checking the following common resources before opening a new issue.
- [CircleCI Config Reference](https://circleci.com/docs/2.0/configuration-reference/)
- [Config SDK API Documentation](https://circleci-public.github.io/circleci-config-sdk-ts/)
- [FAQ](https://github.com/CircleCI-Public/circleci-config-sdk-ts/wiki/FAQ#what-features-of-circleci-config-are-not-supported-by-this-sdk)
This [repository](https://github.com/CircleCI-Public/circleci-config-sdk-ts) welcomes community contributions! See our
[](https://github.com/CircleCI-Public/circleci-config-sdk-ts/blob/main/CONTRIBUTING.md)
for guidance on configuring your development environment and how to submit
quality pull requests.
- [Visual Config Editor](https://github.com/CircleCI-Public/visual-config-editor)