Paystack payment gateway for SolidJS
npm install solidjs-paystackThis is a solidjs library for implementing paystack payment gateway
This is inspired by react-paystack
``sh`
npm install solidjs-paystack --save
`sh`
yarn add solidjs-paystack
`sh`
pnpm add solidjs-paystack
`javascript
import { usePaystack } from "solidjs-paystack";
const config = {
ref: (new Date()).getTime().toString(),
email: "user@example.com",
amount: 20000, //Amount is in the country's lowest currency. E.g Kobo, so 20000 kobo = N200
publicKey: 'pk_test_dsdfghuytfd2345678gvxxxxxxxxxx',
};
// you can call this function anything
const onSuccess = (response) => {
// Implementation for whatever you want to do with response and after success call.
console.log(response);
};
// you can call this function anything
const onCancel = () => {
// implementation for whatever you want to do when the Paystack dialog closed.
console.log('closed')
}
const PaystackHookExample = () => {
const { initializePayment, setConfig }= usePaystack();
setConfig(config)
return (
Please checkout Paystack Documentation for other available options you can add to the tag
Deployment
REMEMBER TO CHANGE THE KEY WHEN DEPLOYING ON A LIVE/PRODUCTION SYSTEM
Contributing
1. Fork it!
2. Create your feature branch:
git checkout -b feature-name
3. Commit your changes: git commit -am 'Some commit message'
4. Push to the branch: git push origin feature-name`Why not star the github repo? I'd love the attention! Why not share the link for this repository on Twitter or Any Social Media? Spread the word!
Don't forget to follow me on twitter!