1.0.3 • Published 3 years ago

xmind2jira-cli v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

xmind2json

e.g.

const xmindparser = require('xmind2json');
let parser = new xmindparser()
const fileOrPath = './test.xmind'

async function xmindParser(xmindPath) {
  const json = await parser.xmindToJSON(xmindPath)
  console.log(json);
}

xmindParser(fileOrPath).then(res => {
  console.log('res', res)
})