Git Product home page Git Product logo

nexus-npm's Introduction

nexus-npm


Node module to deploy artifact in sonatype nexus like maven-release-plugin.

Requeriments

  • Sonatype Nexus OSS configured with npm repository.
  • Valid user from Nexus.
  • Local machine authenticated with nexus.
  • User with permission to push and commit in git repository.

Installation

npm install -g nexus-npm

Project configuration

In the package.json add the string -SNAPSHOT in the version attribute , and add this configuration:

  "distributionManagement": {
    "releaseRegistry": "http://private-nexus.com/repository/npm-publish/",
    "snapshotRegistry": "http://private-nexus.com/repository/npm-snapshot/"
  }

Commands

  • $ nexus-npm deploy - Generates a deploy in the nexus, if no parameter is informed generates a snapshot. Parameters accepted:
    • --release - Generates a new project release.
    • ----tag [tagName] - Name of the tag to be generated. Default version from package.json.
    • --commitPrefix [commigPrefix] - Prefix for commit message. Default is "[nexus-npm] -".
  • $ nexus-npm verify - check if configuration is correct.
  • $ nexus-npm clean - removes generated files.
  • $ nexus-npm rollback - rollback the package.json to last status before a deploy execution.

Customizing .npmrc file

To customize .npmrc file use --npmrcPath or -p param.

Example

nexus-npm verify --npmrcPath /custom/path/.npmrc

or

nexus-npm verify -p /custom/path/.npmrc

nexus-npm's People

Contributors

arkanjoms avatar dependabot[bot] avatar ochstobi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

nexus-npm's Issues

Change logging lib

Change logging lib by another with the option to config loggin level.
The actual lib (module-log) is not updated and is not possible to define logging level.

alternative lib: winston

$ nexus-npm deploy --release not working

$ nexus-npm deploy --release
[default.js-debug]: Loading package.json
[default.js-debug]: Loading /root/.npmrc
[default.js-info]: VALIDATION PASSED!
[default.js-debug]: backup: package.json
[default.js-error]: Cannot read property 'commitPrefix' of undefined

publish-snapshot.js DATE Issue

There is an issue here

var now = moment().format('YYYYDDMM.hhmmss');
appConfig.packageJson.version = appConfig.packageJson.version + "." + now;
fs.writeFileSync('package.json', JSON.stringify(appConfig.packageJson, null, 2));

more exactly on the date format. Is taken the day first and then the month. This is an issue because

20172407 is bigger then 20171808, but the last version was pushed last.

publish-snapshot.js DATE Issue (12/24h format)

There is an issue here
var now = moment().format('YYYYMMDD.hhmmss');

This line is using the 12h format (hh). If you run nightly builds you will have version e.g. 1.0.0-SNAPSHOT.20180301.120001 (12 at night). If you now trigger a build during the day you will have e.g. 1.0.0-SNAPSHOT.20180301.104307 (10 in the morning, should be newer), but the nightly build will always be the latest.
Therefore the better format would be "YYYYMMDD.HHmmss" (24h format).

Customize location .npmrc

Enable to work with Jenkins pulgin NodeJs (https://plugins.jenkins.io/nodejs/) for override .npmrc
Currently the console jenkins in front of the following command piepline:

nodejs(nodeJSInstallationName: "${nodeinstallname}", configId: "${nodeconfigid}") {
sh label: 'publishing-lib-ng...', script: "nexus-npm deploy"
}

returns:

  • nexus-npm deploy
    [default.js-debug]: 0.1.4
    [default.js-debug]: Loading package.json
    [default.js-debug]: Loading ~/.npmrc
    [default.js-error]: ENOENT: no such file or directory, open '/var/lib/jenkins/.npmrc'

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.