An open API service indexing awesome lists of open source software.

https://github.com/nib-health-funds/node-buildkite-inline-image

Provides an easy method for outputting inline images in the buildkite output log.
https://github.com/nib-health-funds/node-buildkite-inline-image

buildkite buildkite-inline-image inline-images

Last synced: 13 days ago
JSON representation

Provides an easy method for outputting inline images in the buildkite output log.

Awesome Lists containing this project

README

          

# @nib/buildkite-inline-image

Provides an easy way to output inline images into your buildkite output log from node.

Handles generating the correct ANSI control characters and buildkite inline image syntax.

Read more at the buildkite docs [here](https://buildkite.com/docs/builds/images-in-log-output).

## Usage
```javascript
var buildkiteInlineImage = require('@nib/buildkite-inline-image');

// Inline image from url
var inlineImage = buildkiteInlineImage.inlineURLImage('https://github.com/nib-health-funds/node-buildkite-inline-image/blob/master/docs/inline_image_example.png');
console.log(inlineImage);

// Or, from an uploaded artifact
var artifactFilePath = '/path/to/artifact.png';
var inlineArtifactImage = buildkiteInlineImage.inlineArtifactImage(artifactFilePath);
console.log(inlineArtifactImage);
```
The above would result in something similiar to the following output:
![Usage example output](https://github.com/nib-health-funds/node-buildkite-inline-image/blob/master/docs/inline_image_example.png)