Skip to content

0.7.0

Compare
Choose a tag to compare
@pmlopes pmlopes released this 08 Jan 10:13
· 1215 commits to develop since this release
f1f625d

This release marks the departure from maven as a toolchain tool. A small runtime should be installed either globally (recommended) or per project.

npm install -g es4x-pm

With the runtime you can use ES4X on your simple scripts e.g.:

#!/usr/bin/env es4x
vertx
  .createHttpServer()
  .requestHandler(function (req) {
    req.response().end("Hello from ES4X!");
  })
  .listen(8080);

And run as:

./index.js

Docker is now the preferred way to deploy applications, once you're happy with your code:

es4x dockerfile

A `Dockerfile will be available in the current path.

docker build -t my-project:1.0.0 .
# Run your application with:
docker run --rm -it --net=host my-project:1.0.0