![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
forge-atlas-fetch
Advanced tools
The client lets you interact with the main Atlassian products:
And interact either:
Install via:
npm install --save 'forge-atlas-fetch'
yarn add 'forge-atlas-fetch'
webpack
yarn add --dev ts-loader webpack webpack-cli
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')
}
};
package.json
build step to:"build": "webpack",
Sample query
import { confluence } from 'forge-atlas-fetch';
import { Content } from 'fetch-confluence';
const fetchContent = async (contentId): Promise<Content> => {
const response = await confluence(api).asApp().content().getContentById({ id: 'sample' });
return response.results;
};
Full documentation available here
Sample query
import { jiraSoftware } from 'forge-atlas-fetch';
const fetchContent = async (contentId): Promise<any> => {
const response = await jiraSoftware().asUser().epic().getEpic({ epicIdOrKey: 'XEN-123' });
return response.results;
};
Full documentation available here
FAQs
Integrate with any Atlassian Product API using simple and typed javascript / typescript commands.
The npm package forge-atlas-fetch receives a total of 1 weekly downloads. As such, forge-atlas-fetch popularity was classified as not popular.
We found that forge-atlas-fetch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.