2.3.0 • Published 7 years ago

atlassian-confluence v2.3.0

Weekly downloads
71
License
-
Repository
github
Last release
7 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

7 years ago

2.2.0

8 years ago

2.1.0

8 years ago

2.0.1

10 years ago

1.0.7

10 years ago

1.0.6

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago