Skip to content

ejthurgo/helix-cli

Β 
Β 

Repository files navigation

Helix Command Line Interface (hlx)

Status

codecov CircleCI GitHub license GitHub issues Greenkeeper badge LGTM Code Quality Grade: JavaScript

The Helix Command Line Interface allows web developers to create, develop, and deploy digital experiences using Project Helix

Installation

Install hlx as a global command. You need Node 8 or newer.

$ npm install -g @adobe/helix-cli

Quick Start

$ hlx --help
hlx <command>

Commands:
  hlx demo <name> [dir]  Create example helix project.
  hlx up [files...]      Run a Helix development server
  hlx build [files..]    Compile the template functions and build package
  hlx deploy             Deploy packaged functions to Adobe I/O runtime
  hlx perf               Test performance
  hlx publish            Activate strains in the Fastly CDN and publish the site
                                                               [aliases: strain]

Options:
  --version  Show version number                                       [boolean]
  --help     Show help                                                 [boolean]

for more information, find our manual at https://github.com/adobe/helix-cli

Setting up a project

$ hlx demo <my-cool-project>

Starting development

$ cd <my-cool-project>
$ hlx up

Just change contents in your project directory and reload http://localhost:3000 to see the results.

(Optional) Build artifacts

# In <my-cool-project>
$ hlx build

(Optional) Test functions

# In <my-cool-project>
$ hlx test

(Optional) Deploy to Adobe I/O Runtime

Automatic Deployment

By default, Helix will set up automated deployment that deploys whenever a new commit has been pushed to your GitHub code repository. In order to do so, you need a CircleCI account and generate a personal API Token.

# In <my-cool-project>
$ hlx deploy \
  --circleci-auth <personal-api-token> \
  --wsk-namespace <your-namespace> \
  --wsk-auth <your-key> \
  --fastly-auth <key> \
  --fastly-namespace <serviceid>

As always, you can keep all parameters in HLX_CIRCLECI_AUTH, HLX_WSK_AUTH, and HLX_FASTLY_AUTH environment variables if you don't want them in your .bash_history.

One-Shot Deployment

Alternatively, you can also perfom a one-shot deployment like this:

# In <my-cool-project>
$ hlx deploy --no-auto --wsk-namespace <your-namespace> --wsk-auth <your-key>

Instead of passing --wsk-auth as a command line option, you can also set the HLX_WSK_AUTH environment variable.

(Optional) Publish your Site

# In <my-cool-project>
$ hlx publish --fastly-auth <key> --fastly-namespace <serviceid>
πŸ‘ πŸ‘Ύ πŸš€  hlx is publishing strains
πŸ‘  Cloned latest version, version 356 is ready
πŸ—  Enabled Fastly to call secure OpenWhisk actions
🌲  Set content root for strain preview
πŸ‘Ύ  Set action root for strain  preview
πŸ‘Ύ  Set action root for strain  xdm
🏒  Set owner for strain        xdm
🌳  Set repo for strain         default
🌳  Set repo for strain         soupdemo
🌳  Set repo for strain         xdm
🏷  Set ref for strain          default
🏒  Set owner for strain        preview
πŸ‘Ύ  Set action root for strain  db5d4350c13924ad
🏷  Set ref for strain          db5d4350c13924ad
πŸ‘Ύ  Set action root for strain  soupdemo
πŸ‘Ύ  Set action root for strain  default
🏒  Set owner for strain        soupdemo
🏷  Set ref for strain          soupdemo
🏒  Set owner for strain        default
🏷  Set ref for strain          preview
🏒  Set owner for strain        db5d4350c13924ad
🏷  Set ref for strain          xdm
🌳  Set repo for strain         preview
🌳  Set repo for strain         db5d4350c13924ad
🌲  Set content root for strain default
βœ…  VCL strains.vcl has been updated
🌲  Set content root for strain soupdemo
🌲  Set content root for strain xdm
🌲  Set content root for strain db5d4350c13924ad
πŸ“•  All dicts have been updated.
πŸš€  Activated latest version, version 356 is live
πŸ’€  Purged entire cache

Directory Index

The default behavior for directory indexes is to load index.html when requesting a path ending with /, so that /foo/bar/ becomes /foo/bar/index.html. This setting can be overwritten in .hlx/strains.yaml by adding an index property:

- strain:
    name: default
    code: /hlx/default/git-github-com-adobe-helix-cli-git--dirty--
    index: README.html
    content:
      repo: helix-cli
      ref: master
      owner: adobe

Static Content Handling

During hlx build, the static files are copied into .hlx/dist. The static files originate either from a src/**/static directory, or are generated by the packager. The exact details are not defined yet and might change in future versions. Example of static files are stylesheets, clientside javascripts, icons, web fonts, etc.

Static content is served from the code repository of the Helix project. By default, whatever remote origin repository is set at the time of running hlx publish is used, but this can be overridden in the configuration file:

- strain:
    name: default
    static:
      repo: reactor-user-docs
      ref: master
      owner: Adobe-Marketing-Cloud

The same core configuration options (repo, ref, root, and owner) are supported for static as for content.

Keeping Your Repository Clean

Although you can just put static content, e.g. an index.html loader for your SPA into the root of your repository, this tends to litter the repository with many small files.

To keep things clean, create a directory docroot in the repository and move your static files there. Then add the configuration static.root = docroot to your strains.yaml so that it looks like this:

- strain:
    name: default
    static:
      repo: reactor-user-docs
      ref: master
      owner: Adobe-Marketing-Cloud
      root: docroot

After your next deployment with hlx publish, all static content will be served out of the directory docroot. None of this will be visible in the URL, so that no visitor will ever see "docroot" in the URL. https://example.com/index.html would be served from $REPO/docroot/index.html.

Securing Static Content

Because the code repository may contain sensitive information, static content is protected using a hard-coded blacklist. This blacklist includes package.json, src, and every hidden file or directory (starting with .).

In strains.yaml, additional white- and blacklists may be specified using the allow and deny properties underneath static. Each allow or deny is a list of glob expressions such as "*.js". YAML requires you to put quotes around the glob expression.

Examples of a whitelist and blacklist configuration may look like this:

- strain:
    name: default
    static:
      repo: reactor-user-docs
      ref: master
      owner: Adobe-Marketing-Cloud
      allow:
        - "/dist/*"
        - "/static/*"
      deny:
        - "*.htl"

If a blacklist is specified, every path matching any of the patterns in the blacklist will be rejected. If a whitelist is specified, only paths matching patterns on the whitelist will be accepted.

A blacklist can block items that have been allowed by the whitelist, but not vice versa.

Matching Strains to URLs

You can define a url for each strain. This property will make sure that only requests made to this base URL will be mapped to the following URL, enabling patterns like having a production instance on www.* and a development instance on dev.*.

An example configuration could look like this:

- strain:
    name: default
    code: /trieloff/default/https---github-com-adobe-helix-helpx-git--master--
    url: https://www.primordialsoup.life
    content:
      repo: reactor-user-docs
      ref: master
      owner: Adobe-Marketing-Cloud
      root: /
- strain:
    name: cd629c5a74d6d60f
    url: https://dev.primordialsoup.life/develop/
    code: /trieloff/default/https---github-com-adobe-helix-helpx-git--develop--
    content:
      repo: reactor-user-docs
      ref: master
      owner: Adobe-Marketing-Cloud

(Recommended) Performance Testing

You can (and should) test the performance of your deployed site by running hlx perf.

The default test will test the entry page of every strain (using the url) property, if defined. Additional known URLs can be configured for each strain using the key urls (expects an array of URLs).

The default test will run from a mid-range mobile phone (Motorola Moto G4), using a regular 3G connection from London, UK. It makes sure that the Lighthouse Accessibility Score and the Lighthouse Performance Score of your site is at least 80.

You can set custom performance budgets and change the performance condition for each strain using the perf property. If a strain has no perf measurement configured, the perf configuration of the default strain will be used.

An example performance configuration might look like this:

- strain:
    name: default
    code: /trieloff/default/https---github-com-adobe-helix-helpx-git--master--
    index: README.html
    static:
      deny:
        - "*.md"
    url: https://www.primordialsoup.life
    urls:
      - https://www.primordialsoup.life/README.html
    perf:
      device: iPhone8
      connection: good3G
      location: Sydney
      visually_complete_85: 1500
      lighthouse-best-practices-score: 80

If the site does not meet all performance criteria you have defined, hlx perf will exit with a non-null exit code (the exit code equals the number of failed tests). This allows you to use hlx perf as a gating condition in a CI/CD workflow.

Testing Environment

  • Possible device values are:
    • MotorolaMotoG4
    • iPhone5
    • iPhone6
    • iPhone6Plus
    • iPhone7
    • iPhone8
    • Nexus5X
    • Nexus6P
    • GalaxyS5
    • iPad
    • iPadPro
  • Possible connection values are:
    • regular2G
    • good2G
    • slow3G
    • regular3G
    • good3G
    • emergingMarkets
    • regular4G
    • LTE
    • dsl
    • wifi
    • cable
  • Possible location values are:
    • NorthVirginia
    • Frankfurt
    • Sydney
    • Ohio
    • California
    • Oregon
    • Canada
    • Ireland
    • Tokyo
    • Seoul
    • Singapore
    • Mumbai
    • SaoPaulo
    • London

Performance Metrics

You can set performance budgets against following scores (more is better) and metrics (less is better):

  • speed_index: Speed Index
  • visually_complete: Visually Complete
  • visually_complete_85: 85% Visually Complete
  • lighthouse-seo-score: Lighthouse SEO Score
  • lighthouse-best-practices-score: Lighthouse Best Practices Score
  • lighthouse-accessibility-score: Lighthouse Accessibility Score
  • lighthouse-performance-score: Lighthouse Performance Score
  • lighthouse-pwa-score: Lighthouse Progressive Web App Score
  • js-parse-compile: JS Parse & Compile
  • time-to-first-byte: Time to First Byte
  • first-contentful-paint: First Contentful Paint
  • first-meaningful-paint: First Meaningful Paint
  • firstRender: First Paint
  • dom-size: DOM Element Count
  • estimated-input-latency: Estimated input latency
  • consistently-interactive: Time to Interactive
  • first-interactive: First CPU Idle
  • html_body_size_in_bytes: Total HTML size in bytes
  • html_size_in_bytes: Total HTML transferred
  • page_wait_timing: Response time
  • page_size_in_bytes: Total Page transferred
  • page_body_size_in_bytes: Total Page size in bytes
  • asset_count: Number of requests
  • onload: onLoad
  • oncontentload: onContentLoad

Structured (JUnit) Performance Reporting

By calling hlx perf with the option --junit <file>, the performance test results will be reported in JUnit-format, which makes it possible to integrate performance result reporting with the CI system performing an automated deployment.

For hlx demo full, a full CI configuration is created that will run a performance test after a completed deployment, report the per-metric results and mark the build as failed in case metrics are not met.

Developing Helix CLI

Building on macOS Mojave

Before running npm install, make sure that nodegit can find all dependencies:

$ export LDFLAGS="-L/usr/local/opt/openssl/lib"
$ export CPPFLAGS="-I/usr/local/opt/openssl/include"

About

Command-line tools for developing with helix

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 81.4%
  • HTML 9.6%
  • VCL 7.6%
  • Shell 1.2%
  • CSS 0.2%