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 🙏

© 2025 – Pkg Stats / Ryan Hefner

nestjs-confluence

v1.0.7

Published

Nestjs Confluence api v2 module

Readme

nestjs-confluence

Info

This project was generated from the OpenAPI file at https://developer.atlassian.com/cloud/confluence/rest/v2/intro/#about

Building

To install the required dependencies and to build the typescript sources run:

npm install
npm run build

General usage

In your Nestjs project:

// without configuring providers
import { ConfluenceApiModule } from "nestjs-confluence";
import { HttpModule } from "@nestjs/axios";

@Module({
  imports: [ConfluenceApiModule, HttpModule],
  providers: [],
})
export class AppModule {}
// configuring providers
import { ConfluenceApiModule, Configuration, ConfigurationParameters } from '';

export function apiConfigFactory (): Configuration => {
  const params: ConfigurationParameters = {
    // set configuration parameters here.
  }
  return new Configuration(params);
}

@Module({
    imports: [ ConfluenceApiModule.forRoot(apiConfigFactory) ],
    declarations: [ AppComponent ],
    providers: [],
    bootstrap: [ AppComponent ]
})
export class AppModule {}
import { DefaultApi } from "";

export class AppComponent {
  constructor(private apiGateway: DefaultApi) {}
}

Note: The ConfluenceApiModule a dynamic module and instantiated once app wide. This is to ensure that all services are treated as singletons.

Using multiple swagger files / APIs / ConfluenceApiModules

In order to use multiple ConfluenceApiModules generated from different swagger files, you can create an alias name when importing the modules in order to avoid naming conflicts:

import { ConfluenceApiModule } from "nestjs-confluence";
import { ConfluenceApiModule as OtherConfluenceApiModule } from "nestjs-confluence";
import { HttpModule } from "@nestjs/axios";

@Module({
  imports: [ConfluenceApiModule, OtherConfluenceApiModule, HttpModule],
})
export class AppModule {}

Set service base path

If different than the generated base path, during app bootstrap, you can provide the base path to your service.

import { BASE_PATH } from "";

bootstrap(AppComponent, [
  { provide: BASE_PATH, useValue: "https://your-web-service.com" },
]);

or

import { BASE_PATH } from '';

@Module({
    imports: [],
    declarations: [ AppComponent ],
    providers: [ provide: BASE_PATH, useValue: 'https://your-web-service.com' ],
    bootstrap: [ AppComponent ]
})
export class AppModule {}

Configuring the module with forRootAsync

You can also use the Nestjs Config Module/Service to configure your app with forRootAsync.

@Module({
  imports: [
    ConfluenceApiModule.forRootAsync({
      imports: [ConfigModule],
      inject: [ConfigService],
      useFactory: (config: ConfigService): Configuration => {
        const params: ConfigurationParameters = {
          // set configuration parameters here.
          basePath: config.get("API_URL"),
        };
        return new Configuration(params);
      },
    }),
  ],
  declarations: [AppComponent],
  providers: [],
  bootstrap: [AppComponent],
})
export class AppModule {}

Using @nestjs/cli

First extend your src/environments/*.ts files by adding the corresponding base path:

export const environment = {
  production: false,
  API_BASE_PATH: "http://127.0.0.1:8080",
};

In the src/app/app.module.ts:

import { BASE_PATH } from "";
import { environment } from "../environments/environment";

@Module({
  declarations: [AppComponent],
  imports: [],
  providers: [
    {
      provide: "BASE_PATH",
      useValue: environment.API_BASE_PATH,
    },
  ],
})
export class AppModule {}

Service

| Service Name | Description (API Reference) | |-----------------------------|--------------------------------------------------------------------------------------------| | AdminKeyService | Admin Key API | | AncestorsService | Ancestors API | | AttachmentService | Attachment API | | BlogPostService | Blog Post API | | ChildrenService | Children API | | ClassificationLevelService | Classification Level API | | CommentService | Comment API | | ContentService | Content API | | ContentPropertiesService| Content Properties API | | CustomContentService | Custom Content API | | DataPoliciesService | Data Policies API | | DatabaseService | Database API | | DescendantsService | Descendants API | | EAPService | EAP API | | FolderService | Folder API | | LabelService | Label API | | LikeService | Like API | | OperationService | Operation API | | PageService | Page API | | RedactionsService | Redactions API | | SmartLinkService | Smart Link API | | SpaceService | Space API | | SpacePermissionsService | Space Permissions API | | SpacePropertiesService | Space Properties API | | SpaceRolesService | Space Roles API | | TaskService | Task API | | UserService | User API | | VersionService | Version API | | WhiteboardService | Whiteboard API |