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

@seibert/forge-storage-inspector

Package Overview
Dependencies
Maintainers
3
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@seibert/forge-storage-inspector

Forge Storage Inspector is a small typescript module to query the Atlassian Forge storage of your Atlassian Forge app. By using it alongside the Forge Storage Inspector Client (see: https://bitbucket.org/seibert-media/forge-storage-inspector-client/src/m

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
3
Weekly downloads
 
Created
Source

Forge Storage Inspector

Forge Storage Inspector is a small typescript module to query the Atlassian Forge storage of your Atlassian Forge app. By using it alongside the Forge Storage Inspector Client (see: https://bitbucket.org/seibert-media/forge-storage-inspector-client/src/master/) you are able to display, traverse and edit your storage with a GUI.

Usage

Install it in your Forge app project:

npm i @seibert/forge-storage-inspector

Add a web trigger to your Forge app manifest:

modules:
  webtrigger:
    - key: webtrigger-key
      function: runWebtrigger
  function:
    - key: runWebtrigger
      handler: index.runWebtrigger

Handle the web trigger request in your index module and pass the request to the forge storage inspector module:

import {handleWebTriggerRequest} from "@seibert/forge-storage-inspector";

export const runWebtrigger = async (req: any) => {
    return handleWebTriggerRequest(req);
};

Checkout the Forge Storage Client

git clone git@bitbucket.org:seibert-media/forge-storage-inspector-client.git

Start the client:

npm start

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

FAQs

Package last updated on 25 May 2022

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