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

@mindik/mailgun-nestjs

v1.2.0

Published

Dynamic module mailgun.js for nestjs

Downloads

244

Readme

MIT License Built with NestJS Built with @nestjsplus/dyn-schematics

About

The module is a thin wrapper for the Mailgun API.

Installation

npm i @mindik/mailgun-nestjs

Quick Start

Add in your tsconfig.json

{
  "esModuleInterop": true
}

Import the module and pass options to it

// app.app-module.ts
import { AppModule } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { MailgunModule } from '@mindik/mailgun-nestjs';

@AppModule({
  imports: [
    MailgunModule.forRoot({
      /**
       * username: string;
       * key: string;
       * url?: string;
       * public_key?: string;
       * timeout?: number;
       */
    })
  ],
  controllers: [AppController],
  providers: [AppService],
})
export class AppModule {}

..or use forRootAsync({ })

// app.app-module.ts
import { AppModule } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { MailgunModule } from '@mindik/mailgun-nestjs';

@AppModule({
  imports: [
    MailgunModule.forRootAsync({
      imports: [/** ConfigModule */],
      /** 
        * useExisting 
        * useFactory 
        * useClass 
      */
      useFactory: async () => (
        {
          /**
           * username: string;
           * key: string;
           * url?: string;
           * public_key?: string;
           * timeout?: number;
           */
        }
      ), 
      inject: [/** ConfigService */]
    }),
  ],
  controllers: [AppController],
  providers: [AppService],
})
export class AppModule {}

Inject Mailgun in your service

// app.service.ts
import { InjectMailgun } from '@mindik/mailgun-nestjs';
import { Injectable } from '@nestjs/common';

@Injectable()
export class AppService {
  constructor(
    /*
      or 
      @Inject(MAILGUN_TOKEN) private readonly mail
    */
    @InjectMailgun() private readonly mg
  ) {}

  async test() {
    return this.mg.messages
      .create('sandbox-123.mailgun.org', {
        from: 'Excited User <[email protected]>',
        to: ['[email protected]'],
        subject: 'Hello',
        text: 'Testing some Mailgun awesomness!',
        html: '<h1>Testing some Mailgun awesomness!</h1>',
      })
      .then((msg) => console.log(msg)) // logs response data
      .catch((err) => console.log(err)); // logs any error
  }
}

You can use a decorator

@InjectMailgun() private readonly mg

that is an alias for a longer entry

@Inject(MAILGUN_TOKEN) private readonly mg

Add the export to the decorator @AppModule()

// app.app-module.ts
import { AppModule } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { MailgunModule } from '@mindik/mailgun-nestjs';

@AppModule({
  imports: [
    MailgunModule.forRoot({
      /**
       * username: string;
       * key: string;
       * url?: string;
       * public_key?: string;
       * timeout?: number;
       */
    })
  ],
  controllers: [AppController],
  providers: [AppService],
  exports: [AppService],
})
export class AppModule {}

Import service in some module

// some.app-module.ts
import { AppModule } from '@nestjs/common';
import { AppService } from 'src/app.service';
import { SomeController } from './some.controller';
import { SomeService } from './some.service';

@AppModule({
  controllers: [SomeController],
  providers: [AppService, SomeService],
})
export class SomeModule {}

Use in your some service

// some.service.ts
import { Injectable } from '@nestjs/common';
import { AppService } from 'src/app.service';

@Injectable()
export class SomeService {
  constructor(private readonly appService: AppService) {}

  async test(): Promise<any> {
    return 'SOME SERVICE ' + (await this.appService.test());
  }
}

Contributing

Any suggestions for improving the project are welcome.

  1. Fork the repository
  2. Create your branch (git checkout -b my-branch)
  3. Commit any changes to your branch
  4. Push your changes to your remote branch
  5. Open a pull request

License

Distributed under the MIT License. See LICENSE for more information.

Acknowledgements