Package Exports
- mjml-cli
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (mjml-cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
mjml-cli
Installation
We recommend installing and using MJML locally, in a project folder where you'll use MJML:
npm install mjmlIn the folder where you installed MJML you can now run:
./node_modules/.bin/mjml input.mjmlTo avoid typing ./node_modules/.bin/, add it to your PATH:
export PATH="$PATH:./node_modules/.bin"You can now run MJML directly, in that folder:
mjml input.mjmlMJML is written with NodeJS You can download and install the MJML engine from NPM.
Command Line Interface
In addition to the translation engine, which converts MJML to email HTML, we've bundled a Command Line Interface (CLI) helping you to achieve the basic features it offers and integrate it seamlessly in your development flow.
Render MJML to HTML
mjml input.mjmlIt will output a HTML file called input.html.
Input can also be a directory.
Migrate MJML3 to MJML4
$> mjml -m input.mjml -o result.mjmlIt will output a MJML file called result.mjml.
Validate MJML
$> mjml -v input.mjmlIt will log validation errors. If there are errors, exits with code 1. Otherwise, exits with code 0.
Render and redirect the result to stdout
mjml -s input.mjml
# or
mjml --stdout input.mjmlMinify and beautify the output HTML
$> mjml input.mjml --config.beautify true --config.minify falseThese are the default options.
Log error stack
$> mjml input.mjml --config.stack trueRender and redirect the result to a file
mjml input.mjml -o my-email.html
# or
mjml input.mjml --output my-email.htmlYou can output the resulting email responsive HTML in a file.
If the output file does not exist it will be created, but output directories must already exist.
If output is a directory, output file(s) will be output/input-file-name.html
Set the validation rule to skip so that the file is rendered without being validated.
mjml -l skip -r input.mjmlWatch changes on a file
mjml -w input.mjml
# or
mjml --watch input.mjmlIf you like live-coding, you might want to use the -w option that enables you to re-render your file every time you save it.
It can be time-saving when you can just split you screen and see the HTML output modified when you modify your MJML.
Of course, the -w option can be used with an --output option too.