Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

forge-atlas-fetch

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

forge-atlas-fetch

Integrate with any Atlassian Product API using simple and typed javascript / typescript commands.

  • 1.0.152
  • npm
  • Socket score

Version published
Weekly downloads
37
increased by208.33%
Maintainers
1
Weekly downloads
 
Created
Source

Forge Atlas Fetch - Documentation

Integrate with any Atlassian Product API using simple and typed javascript / typescript commands.

TypeScript

Getting started

The client lets you interact with the following Atlassian products:

  • Confluence
  • Jira

And interact either:

  • as the logged-in User
  • as the App itself

Installation

Install via:

  • npm
npm install --save forge-atlas-fetch
  • yarn
yarn add forge-atlas-fetch

Update your existing Forge app config

  • install webpack
yarn add --dev ts-loader webpack webpack-cli
  • add the following webpack.config.js at the root of your Forge app:
const path = require('path');

module.exports = {
    entry: './src/index.tsx',
    target: 'node',
    module: {
        rules: [
            {
                test: /\.tsx?$/,
                use: 'ts-loader',
                exclude: /node_modules/
            }
        ]
    },
    resolve: {
        extensions: [ '.tsx', '.ts', '.js' ]
    },
    output: {
        filename: 'index.js',
        library: '',
        libraryTarget: 'commonjs',
        path: path.resolve(__dirname, 'dist')
    }
};
  • change your package.json build step to:
"build": "webpack",

Usage in your Forge app

Forge Confluence client

Sample query

import { confluence } from 'forge-atlas-fetch';
import { Content } from 'fetch-confluence';

const fetchContent = async (contentId): Promise<Content> => {
    return await confluence(api).asApp().content().getContentById({ id: contentId }).results;
};

Full documentation available here

Forge Jira client

Sample query

import { jira } from 'forge-atlas-fetch';
import { IssueBean } from 'fetch-jira';

const fetchIssue = async (issueKey): Promise<IssueBean> => {
    return await jira().asApp().issues().getIssue({ issueIdOrKey: issueKey });
};

Full documentation available here

FAQs

Package last updated on 20 Nov 2019

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc