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

apigee-x-module

Package Overview
Dependencies
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apigee-x-module

Module for integrating with the Apigee X platform for TS/JS developer portals.

  • 2.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-92.98%
Maintainers
1
Weekly downloads
 
Created
Source

apigee-x-module

This is a nodejs module to interact with the Apigee X APIs for SaaS and hybrid orgs. This is especially useful when creating a DIY developer portal.

Getting Started

To get started, simply import the module into your TS/JS project.

npm i apige-x-module

Then after importing the module, you can instantiate the Apigee service with a GCP service account email, GCP service account private key, and Apigee org name (which are typically stored as environment variables using dotenv).

import { ApigeeService, ApiManagementInterface, ApiProducts } from "apigee-x-module";

const apigeeService: ApiManagementInterface = new ApigeeService(process.env.SERVICE_ACCOUNT_EMAIL, process.env.SERVICE_ACCOUNT_KEY, process.env.APIGEE_ORG);

And finally you can call the API to retrieve API products, create or edit developers, or create apps and credentials to access APIs.

Here we are serving API Products in an express app to a web client developer portal.

const app = express();

app.get('/apiproducts', (req, res) => {
  apigeeService.getApiProducts().then((response) => {
    res.send({
      apiproducts: response.apiProducts
    });
  }).catch((error) => {
    console.error(error);
    res.status(500).send(error);
  })
});

Build

To build, just run:

npm run build

Test

To test, first add your GCP service account details and Apigee org name to local environment variables, and then run:

npm run test

If your Apigee org has at least one API product, then all tests should pass.

Open Issues

Not all Apigee X APIs are supported yet (see lib/apigee-interface.ts for which operations are currently supported). If you need particular APIs to be added simply add here as Github issues, or submit a PR with the changes.

Keywords

FAQs

Package last updated on 29 Apr 2024

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