Socket
Socket
Sign inDemoInstall

aemfed

Package Overview
Dependencies
654
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    aemfed

Upload front-end changes into AEM and refresh relevant resources in the page for easier development.


Version published
Weekly downloads
3.3K
increased by14.18%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

0.0.4

  • Update BrowserSync to fix issue with reloading all css #1505. It introduces a problem with Firefix and the web console however.
  • Add option to specify start port for BrowserSync proxy, so it is easier to run multiple versions at the same time

Readme

Source

aemfed

Speed up your AEM front-end development using aemsync, BrowserSync and this.

Features

  • Watches changes in files and uploads them to AEM using aemsync
  • Determines which clientlibs are affected by the uploaded changes
  • Runs BrowserSync in proxy modus so it can communicate with all open instances of your site without any browser plugins. It reloads these pages when the changes have been uploaded, or it only injects the new styling when only styling changes were made, maintaining the state of the page.
  • Show serverside clientlib errors for each request

Installation

In your project folder

npm install aemfed

Usage

Show the available options

npx aemfed -h

When npx is not available, install it with

npm install -g npx

Run with specific server, ignore pattern and folder to watch

npx aemfed -t "http://admin:admin@localhost:4502" -e "**/*___jb_(old|tmp)___" -w "src/content/jcr_root/"

If you have a package.json in your project, add it as a script

"scripts": {
    "aemfed": "aemfed -t \"http://admin:admin@localhost:4502\" -e \"**/*___jb_(old|tmp)___\" -w \"src/content/jcr_root/\""
}

...and run it with

npm run aemfed

Once started, connect your browser to the local access URL and port provided by BrowserSync, so you load the pages with the BrowserSync scripts and reloading and injecting is working without any other plugins.

Requirements

  • Works best with a recent version of node/npm, but tested with node 6.x
  • Tested on AEM 6.1, 6.3 and 6.4

Issues

  • Using ~ (homedir) in paths to watch does not work as expected when aemfed does all the path processing (paths are surrounded with quotes)
  • YUI minification generates errors for each request if there is an error (Less and GCC generate errors only first time after a resource was changed)
  • When installing the WKND tutorial in a clean AEM 6.3 SP2 or AEM 6.4, it is possible the changes pushed to AEM are not present in the final clientlibs loaded into the pages. Performing a one time clientlib rebuild could fix this: http://localhost:4502/libs/granite/ui/content/dumplibs.rebuild.html and click 'Invalidate Caches' & 'Rebuild Libraries' (last step can take up to 15 minutes)
  • When inspecting Less imports to determine dependencies, very simple logic is used to process the file locations in the @import. Resulting in a number of edge cases not working as expected (and throw ENOENT exceptions):
    • Less variables are not supported in @import (used for example in the WKND tutorial in ui.apps/src/main/content/jcr_root/apps/wknd/clientlibs/clientlib-site/site/css/grid.less to switch between the 6.3 and 6.4 grid-base). As a result changes in the imported file may not trigger an update in the browser
    • Importing css files in a Less file using @import doesn't work, since it appends .less to all @imports. But since the css probably doesn't need any Less processing anyway, it is better to include it directly in a css.txt (in older versions of AEM it also speeds up the Less processing)
  • The issue, where BrowserSync was reloading all css when it could not find one of the patterns, is fixed with this version. Another issue is introduced however. When visiting the web console (/system/console) in Firefox, the links from the top menu stop working correctly. After one or two clicks it keeps redirecting you to the bundles page. This behaviour has not been seen in Chrome or Safari.

Thanks to the BrowserSync team, to gavoja for aemsync and kevinweber for aem-front.

Keywords

FAQs

Last updated on 17 May 2018

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc