Socket
Socket
Sign inDemoInstall

atlassian-confluence

Package Overview
Dependencies
9
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    atlassian-confluence

Node.js client library to interact with Atlassian Confluence


Version published
Weekly downloads
56
decreased by-6.67%
Maintainers
1
Install size
609 kB
Created
Weekly downloads
 

Readme

Source

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.

Keywords

FAQs

Last updated on 07 Feb 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc