Skip to content

Instantly share code, notes, and snippets.

@pmlopes
Created July 10, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pmlopes/9f18f63b35dc58fe786a to your computer and use it in GitHub Desktop.
Save pmlopes/9f18f63b35dc58fe786a to your computer and use it in GitHub Desktop.
package vert.x stacks for npm

Vert.x 3 Minimal stack

Vert.x3 + the endorsed modules

Contents

  • Vert.x Core
  • Groovy, JS and Ruby languages
  • Hazelcast clustering
  • Service proxy

More information on:

To build unpack the desired stack:

tar --strip-components=1 -zxvf vertx-3.0.0-min.tar.gz

make sure the stack name and version on package.json matches the tar and then:

npm publish
throw new Error('This module is not supposed to be imported!');
{
"name": "vertx3-min",
"version": "3.0.0-1",
"description": "Vert.x: A tool-kit for building reactive applications on the JVM.",
"main": "index.js",
"repository": "vert-x3",
"keywords": [
"vert.x",
"framework",
"polyglot",
"reactive"
],
"license": "Apache-2.0",
"dependencies": {},
"bin": {
"vertx": "./bin/vertx",
"vertx.bat": "./bin/vertx.bat"
},
"homepage": "http://vertx.io",
"engines": {},
"files": [
"bin",
"conf",
"lib",
"README.md",
"index.js"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment