2.3.0 • Published 6 years ago

atlassian-confluence v2.3.0

Weekly downloads
71
License
-
Repository
github
Last release
6 years ago

node-atlassian-confluence

Node.js client library to interact with Atlassian Confluence

Requirements

This module currently only support Confluence 5.5+

Installation

If you have the node package manager, npm, installed:

npm install --save atlassian-confluence

Getting Started

Example:

var confluence = require('atlassian-confluence');

confluence.useSSL = false
confluence.username = 'your_username';
confluence.password = 'your_password';
confluence.host = 'confluence_host.com';
confluence.port = 9080; // Defaults to 443 if useSSL is true. Otherwise, defaults to 80
confluence.context = '/wiki'; // Optional

confluence.simpleSearch('help', { limit : 3 }, function (res) {
    if (res) {
        res.results.forEach(function(result) {
            console.log(result.title);
        })
    }
});

Refer to https://docs.atlassian.com/atlassian-confluence/REST/latest for additional documentation.

2.3.0

6 years ago

2.2.0

6 years ago

2.1.0

7 years ago

2.0.1

8 years ago

1.0.7

8 years ago

1.0.6

8 years ago

1.0.5

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago