Skip to content

PranjalAgni/nodejs-circleci-playground

Repository files navigation

NodeJS + Circle CI

CircleCI

This is a play project

Examples

InsertionSort

fetch('https://sample-node-cicd.herokuapp.com/insertionSort', {
  method: 'post',
  body: JSON.stringify(body),
  headers: { 'Content-Type': 'application/json' }
})
  .then(res => res.json())
  .then(ans => console.log(ans));

Output

{ answer: [ -144, 56, 78, 1111 }

Binary Search

fetch('https://sample-node-cicd.herokuapp.com/binarySearch', {
  method: 'post',
  body: JSON.stringify(body),
  headers: { 'Content-Type': 'application/json' }
})
  .then(res => res.json())
  .then(ans => console.log(ans));

Output

{
  status: 'found';
}

About

This project is to explore CircleCI for Nodejs apps.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published