Solidjs-Paystack
This is a solidjs library for implementing paystack payment gateway
This is inspired by react-paystack
Get Started
Install
npm install solidjs-paystack --save
yarn add solidjs-paystack
pnpm add solidjs-paystack
Usage
import { usePaystack } from "solidjs-paystack";
const config = {
ref: (new Date()).getTime().toString(),
email: "user@example.com",
amount: 20000,
publicKey: 'pk_test_dsdfghuytfd2345678gvxxxxxxxxxx',
};
const onSuccess = (response) => {
console.log(response);
};
const onCancel = () => {
console.log('closed')
}
const PaystackHookExample = () => {
const { initializePayment, setConfig }= usePaystack();
setConfig(config)
return (
<div>
<button onClick={() => {
initializePayment({ onSuccess, onCancel })
}}>Paystack Hooks Implementation</button>
</div>
);
};
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
- Fork it!
- Create your feature branch:
git checkout -b feature-name
- Commit your changes:
git commit -am 'Some commit message'
- Push to the branch:
git push origin feature-name
- Submit a pull request 😉😉
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 Any Social Media? Spread the word!
Don't forget to follow me on twitter!