filevault

Apache Jackrabbit FileVault/Adobe CQ VLT node integration

Usage no npm install needed!

<script type="module">
  import filevault from 'https://cdn.skypack.dev/filevault';
</script>

README

FileVault

FileVault is Apache Jackrabbit FileVault/Adobe CQ VLT node integration.

Installation

Download and install vlt command line tool from one of the following link and set it on path.

You also need to install FileVault globally:

$ npm install -g filevault

Usage

const FileVault = require('filevault');
const devServer = new FileVault({
    verbose: true,
    username: 'admin',
    password: 'admin'
});

devServer
    .import({
        uri: 'http://localhost:4502/crx',
        jcrPath: '.',
        localPath: '/'
    })
    .then((code)=>{
    
    })
    .catch((error)=>{
    });