UNPKG

octopus-deploy

Version:

Node scripts to package up applications, create releases, and deploy with Octopus Deploy. This package leverages the Octopus Deploy REST API in order to deploy from Windows and non-Windows machines.

11 lines (7 loc) 240 B
'use strict' const client = require('../octopus-client') const getAll = async (take, skip) => { const url = `/channels?${take ? `take=${take}` : ''}&${skip ? `skip=${skip}` : ''}` return client.get(url) } module.exports = { getAll }