npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@octopusdeploy/octopackjs

v0.2.4

Published

A nodejs tool for packaging and pushing projects to an Octopus Deploy instance.

Downloads

4,581

Readme

octopack

A nodejs tool for packaging and pushing projects to an Octopus Deploy instance.

Installation

Install with npm

    npm install @octopusdeploy/octopackjs --save-dev

API

var package = octo.pack(type, options)

type

Optional parameter to define the package type. Valid values are targz, tar or zip. If not provided this defaults to targz.

options.packagejson

Path to the package.json containing project information used to provide required package metadata.

options.id

Defines the Id component of the created package. By default it will extract the name out of package.json if present.

options.version

Defines the version component of the created package. By default it will extract the version out of package.json if present.

package.append(filePath, buff, options)

Adds the buff Buffer instance to the package named using the provided filePath parameter as a relative path from the root of the archive.

package.append(filePath, stream, options)

Adds the stream Stream instance to the package named using the provided filePath parameter as a relative path from the root of the archive.

package.append(filePath, file)

Adds the file from disk to the package named using the provided filePath parameter as a relative path from the root of the archive. If the filePath parameter is missing, the provided path to the file on disk will be used as the filePath in the archive. If the filePath is a glob pattern, then the glob is used to append files to the package and the other arguments will be ignored. Supplying a folder path without being a glob will be ignored.

package.appendSubDir(dir, toRoot)

Adds the sub-directory dir to the archive. Adds the contents of dir to the root of the archive if toRoot is true (defaults to false).

package.toStream(function callback(err, data){})

Completes the packaging of the files and invokes the provided callback, returning an object containing the stream instance and name.

package.toFile(dir, function callback(err, data){})

Completes the packaging of the files, saves it to disk at the provided directory location and invokes the provided callback, returning an object containing the package path, name and size.

octo.push(file, options, function callback(err, data){})

file

Package file that is to be pushed to server. This can be an instance of a Stream, Buffer or file path string.

options.host

Required property that points to the Octopus Server instance the package should be pushed to.

options.replace

Flag to force overwrite of existing package if one already exists with the same ID and version.

options.apiKey

Key linked to account with BuiltInFeedPush permissions. If options.replace is set to true and a package with the same ID and version already exists then the BuiltInFeedAdminister permission is required.

options.name

If a Stream or Buffer object is provided in the file parameter, the package name needs is required to properly store and use in Octopus Deploy. If this value is not provided and a path has been provided in the file parameter then the name of the file itself will be used.

callback

Invoked when the HTTP request has completed. The data object contains the HTTP response body that was returned as a result of a successful push.

Usage Examples

Pack

var octo = require('@octopusdeploy/octopackjs');
octo.pack()
  .append('buffer files/hello.txt', Buffer.from('hello world'), {date: new Date(2011, 11, 11)})
  .append('stream.txt', fs.createReadStream('./package.json'))
  .append('lib/myfile.js')
  .appendSubDir('dist/', true)
  .toFile('./bin', function (err, data) {
    console.log("Package Saved: "+ data.name);
  });

Push

var octo = require('@octopusdeploy/octopackjs');

octo.push('./bin/Sample.Web.3.2.1.tar.gz', {
        host: 'http://octopus-server/', 
        apikey: 'API-XXXXXXXXX',
        replace: true
    }, function(err, result) {
     if(!err) {
        console.log("Package Pushed:" + body.Title + " v"+ body.Version +" (" + fileSizeString(body.PackageSizeBytes) +"nytes)"); 
     }
});
var octo = require('@octopusdeploy/octopackjs');

octo.push('./bin/Sample.Web.3.2.1.tar.gz', {
        host: 'http://octopus-server/', 
        apikey: 'API-XXXXXXXXX',
        replace: true,
        spaceId: 'Spaces-1'
    }, function(err, result) {
     if(!err) {
        console.log("Package Pushed:" + body.Title + " v"+ body.Version +" (" + fileSizeString(body.PackageSizeBytes) +"nytes)"); 
     }
});

Tests

    npm test