npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

atlas-app-services-admin-api

v1.5.5

Published

OpenAPI client for Atlas App Services Admin API

Downloads

42

Readme

npm version install size npm downloads Known Vulnerabilities GitHub top language GitHub Sponsors

Welcome to the comprehensive interface for the MongoDB Atlas App Services Admin API (3.0)!

This package is derived in part from the official MongoDB Atlas Open API specification. It's been refactored and optimized to provide a seamless and efficient experience.

🚨 Disclaimer

While this package provides comprehensive access to the MongoDB Atlas App Services Admin API, due to the vastness and complexity of the APIs, not all use cases have been exhaustively tested or verified. Users are encouraged to test the package in their specific contexts and report any issues they encounter. Contributions and feedback are always welcome!

🌟 Why Use This?

  • Full Coverage: This package offers complete access to the MongoDB Atlas App Services Admin API. No more partial implementations or missing features.
  • Optimized for Use: The refactoring ensures that accessing and using the API is as intuitive and straightforward as possible.
  • Full documentation: See full documentation with API Specification.

🛠 Installation

npm install atlas-app-services-admin-api --save

🚀 Getting Started

To begin, you'll need your Public and Private keys, as well as your groupId (identical to your Project Id). See how to get them here.

The default BaseUrl is https://realm.mongodb.com/api/admin/v3.0.

Here's a quick example to retrieve the list of Triggers:

// Logging is optional. Use any logger! If you don't have one, you can map the console:
class ConsoleLogger {
    log(message, ...optionalParams) {
        console.log(`**** ConsoleLogger-LOG: ${message}`, ...optionalParams);
    }
    error(message, ...optionalParams) {
        console.error(`**** ConsoleLogger-ERROR: ${message}`, ...optionalParams);
    }
    debug(message, ...optionalParams) {
        console.debug(`**** ConsoleLogger-DEBUG: ${message}`, ...optionalParams);
    }
}

const { AtlasAppServicesClient } = require('atlas-app-services-admin-api');

// Setup optional logging
const logger = new ConsoleLogger();

// Setup your Atlas config per docs
const configInfo = {
    publicKey: process.env.ATLAS_APP_SERVICES_PUBLIC_KEY,
    privateKey: process.env.ATLAS_APP_SERVICES_PRIVATE_KEY,
    groupId: process.env.ATLAS_APP_SERVICES_GROUP_ID,
    baseUrl: process.env.ATLAS_APP_SERVICES_BASE_URL, // Optional Override
};

// Instantiate and initialize the client
const atlasClient = new AtlasAppServicesClient(configInfo, logger);
await atlasClient.initialize();

// Instantiate the specific Atlas API you would like (see docs)
const triggersApi = await atlasClient.atlasTriggersApi();

// Snag Ids from client for the API calls as needed
const groupId = atlasClient.groupId;
const appId = atlasClient.appId;

// Make the API call
const apiResponse = await triggersApi.adminListTriggers(groupId, appId);
if (apiResponse.status !== 200 && apiResponse.data) {
    throw new HttpException(apiResponse.data, apiResponse.status);
}
return { result: apiResponse.data };

With this client set up, you have the entire Atlas Admin API at your fingertips! For a detailed guide, check out the full API Specification.

📌 Features

  • Easy Initialization: Set up and start using the client in no time.
  • Comprehensive API Access: From Triggers to Users, access every aspect of the Atlas Admin API.
  • Efficient Error Handling: Built-in logging and error handling mechanisms for smoother development.
  • Regular Updates: Stay in sync with the official MongoDB Atlas API.
  • Full API Reference: Explore the full capabilities of our library in the API Reference.

🤝 Contribute

Your insights and contributions can make this package even better! Check out our CONTRIBUTING.md guide and be a part of this exciting project.

📖 Documentation

Our library's documentation is generated using TypeDoc, ensuring that you get the most accurate and up-to-date information directly from the source code.

Happy coding! 🎉

⚖️ License

This project is licensed under the MIT License - see the LICENSE file for details.