0.10.0 • Published 5 years ago

confluency v0.10.0

Weekly downloads
43
License
Apache-2.0
Repository
github
Last release
5 years ago

node-confluence NPM version Node.js CI Coverage Status

How to test

$ npm test # for module users 
$ npm run babeltest # for developers

How to use

const host = 'https://xxx.atlassian.net';
const context = process.env.CONFLUENCE_CONTEXT || '';
const confluency = new Confluency({ host, context });
confluency.getPage(1081354).then(data => {
  console.log(data);
});

Support features

  • getPage(pageId, expand)
  • getChildren(pageId, {all, expand=[]} = {})
  • getPages(spaceKey, opts={limit: 25})
  • getSpaces(opts={limit:25})
  • getSpace(spaceKey)
  • create({space, title, content, parent})
  • update({space, id, title, content, parent, version})
  • del(pageId)
  • tagLabel(pageId, label)
  • tagLabels(pageId, labels)
  • getLabels(pageId)
  • untagLabel(pageId, label)
  • search(cql, {limit}={})
  • changeParent(pageId, parentId)
  • convertWikiMarkup(content)
0.10.0

5 years ago

0.9.0

7 years ago

0.6.4

8 years ago

0.6.3

8 years ago

0.6.2

8 years ago

0.6.1

8 years ago

0.6.0

8 years ago

0.5.0

9 years ago

0.4.3

10 years ago

0.4.2

10 years ago

0.4.1

10 years ago

0.4.0

10 years ago

0.3.0

10 years ago

0.1.1

10 years ago

0.1.0

11 years ago

0.0.1

12 years ago