JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q43922F
  • License MIT

Keynote to Dynatrace Synthetic script converter for Node.js.

Package Exports

  • key2dyn

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 (key2dyn) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

node-key2dyn

Keynote to Dynatrace Synthetic script converter for Node.js.

Description

A simple Keynote script (.kht or .krs) script converter. Uses xml2js to parse Keynote script XML.

#Installation Easiest way to install is to just use npm:

npm install key2dyn

#Usage Easy as pie:

var key2dyn = require('key2dyn');

var keyScript = '<script><name>My Keynote Script</name><actions><action type="Browser" /></action></script>';

key2dyn.parseXMLScript(keyScript, function(err, result) {
    if (err) console.error(err);
    
    console.log(key2dyn.convertScript(result));
});

That's it!