🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

grunt-kevoree-registry

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-kevoree-registry

Grunt plugin to publish Kevoree models to a Kevoree Registry

latest
Source
npmnpm
Version
4.0.0
Version published
Maintainers
1
Created
Source

grunt-kevoree-registry

Grunt plugin that handles POST of Kevoree models to registry.kevoree.org using kevoree-registry-client

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-kevoree-registry --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-kevoree-registry');

The "kevoree_registry" task

Overview

In your project's Gruntfile, add a section named kevoree_registry to the data object passed into grunt.initConfig().

grunt.initConfig({
  kevoree_registry: {
    main: {
      options: {
        registry: {
          host: 'localhost',
          port: 8080,
          ssl: false,
        },
        user: {
          login: 'kevoree',
          password: null // this will force password prompt even if HOME/.kregrc specifies a user:password
        }
      },
      src: 'kevlib.json'
    }
  }
});

Options

options.registry.host

Type: String Default value: 'registry.kevoree.org'

A string value used to specified the remote Kevoree registry you want to publish the model to.

options.registry.port

Type: Number Default value: 80

A number value used to specified the remote Kevoree registry's port you want to publish the model to.

options.registry.ssl

Type: boolean Default value: false

A boolean used to define whether or not the client needs to connect via HTTPS or HTTP

options.user.login

Type: String Default value: undefined

A string used to log in to the Kevoree Registry

Command line options

You can also update the default host and port of the targeted registry directly in the command line. For example the following command will try to publish the deploy unit to a registry located at http://localhost:8080/

$ grunt publish --kevoree-registry-host=localhost --kevoree-registry-port=8008

Keywords

gruntplugin

FAQs

Package last updated on 21 Jul 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts