New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

angular4-paystack

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular4-paystack

an angular 4 module for paystack transactions

  • 1.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
818
increased by117.55%
Maintainers
1
Weekly downloads
 
Created
Source

ANGULAR4-PAYSTACK

This is an angular module that abstracts the complexity of making paystack payments with Angular.

USAGE

1. Install the module

npm install --save angular4-paystack

2. Reference the Paystack inline script in your index.html like so:

  <script src="https://js.paystack.co/v1/inline.js"></script>  

3. Import the module

In your app.module.ts or any preferred module, import the module like so:

import { NgModule } from '@angular/core'; 

import { Angular4PaystackModule } from 'angular4-paystack';
...

@NgModule({
  imports: [
    ...
    Angular4PaystackModule,
  ]
})

export class AppModule {}

4. Use the component in your code

  <angular4-paystack
    [key]="'pk_test_xxxxxxxxxxxxxxxxxxxxxxxxxxxx'"
    [email]="'ashinzekene@gmail.com'"
    [amount]="5000000"
    [ref]="'2637458697'"
    [class]="'btn btn-primary'"
    (close)="paymentCancel()"
    (callback)="paymentDone($event)"
  >Pay with Paystack</angular4-paystack>

OPTIONS

NameTypeRequiredDefault ValueDescription
amount numbertrueundefinedAmount to withdraw (in kobo for NGN)
email stringtrueundefinedEmail of subscriber/client
keystringtrueundefinedYour pubic Key from Paystack. Use test key for test mode and live key for live mode
refstringtrueundefinedUnique reference
transaction_chargenumberfalse0A flat fee to charge the subaccount for this transaction, in kobo.
metadataobjectfalse{}custom details
classstringfalseundefinedA string of classes to add to the component
styleobjectfalseundefinedCSS stylings, eg {fontColor: 'red'}
textobjectfalseundefinedText output of the component
currencystringfalse"NGN"Transaction currency
planstringfalse""If transaction is to create a subscription to a predefined plan, provide plan code here.
quantitystringfalse""Used to apply a multiple to the amount returned by the plan code above.
subaccountstringfalse""The code for the subaccount that owns the payment.
bearerstringfalse""Who bears Paystack charges? account or subaccount
callbackfunctionfalseundefinedA function called when transaction is successful. Returns a parameter containing unique reference
onClosefunctionfalseundefinedA function called when transaction is cancelled

For more information checkout paystack's documentation

Contributing

Please feel free to fork this package and contribute by submitting a pull request to enhance the functionalities.

How can I thank you?

Why not star the github repo? I'd love the attention! Why not share the link for this repository on Twitter or anywhere? Spread the word!

Don't forget to follow me on twitter!

Thanks! Ashinze Ekene.

License

The MIT License (MIT). Please see License File for more information.

Keywords

FAQs

Package last updated on 22 Sep 2017

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