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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@pharlase/paystack-effect

v1.0.3

Published

An Effect-native TS SDK and HTTP mock/documentation server for the Paystack API

Downloads

106

Readme

paystack-effect

An Effect-native TypeScript SDK client, declarative HttpApi, and Bun HTTP mock/documentation server for the Paystack API.

This package provides a type-safe, functional integration wrapper for Paystack leveraging Effect TS. It can be consumed either as an Effect-native SDK library in your TypeScript applications, or run as a standalone mock server exposing Swagger documentation.

Installation

npm i @pharlase/paystack-effect
# or using bun
bun add  @pharlase/paystack-effect

Consuming as a Library

To use the library in your Effect TS workflows:

1. Configure the Client Layer

Provide your API key and map the client SDK to your application's environment.

import {Config, Effect, Layer } from "effect"
import { PaystackHttpClient, Transaction } from "@pharlase/paystack-effect";

// Create the live HTTP client layer with your config
const PaystackConfigLive = PaystackHttpClient.layerConfig({
	apiKey: Config.redacted("PAYSTACK_SECRET_KEY"),
});

const PaystackClientLive = PaystackHttpClient.layer.pipe(
  Layer.provide(PaystackConfigLive)
)

2. Invoke SDK Services

Use the API modules directly in functional generators:

import { Effect } from "effect"
import { Transaction } from "@pharlase/paystack-effect"

const initializePayment = Effect.gen(function* () {
  const transactionService = yield* Transaction.Service
  
  const response = yield* transactionService.initialize({
    email: "[email protected]",
    amount: 500000, // 5,000 NGN in kobo
    metadata: JSON.stringify({ cartId: "12345" })
  })

  console.log("Payment link initialized:", response.data?.authorization_url)
  return response
})

// Run the effect providing the Paystack layers
Effect.runPromise(
  initializePayment.pipe(
    Effect.provide(Transaction.layer),
    Effect.provide(PaystackClientLive)
  )
)

Declarative HttpApi & Documentation Server

In addition to serving as an SDK library, this repository contains a complete declarative HttpApi representation mapping all 20 Paystack resource endpoints, complete with their request/response schemas, error tags, and security descriptors.

Start the REST Server

You can run the mock/documentation server locally using Bun:

# Start the server (runs on port 3000 by default)
bun run start
  • OpenAPI Json Document: Available at http://localhost:3000/openapi.json
  • Swagger Documentation UI: Available at http://localhost:3000/docs

Development & Build

If you are developing or extending paystack-effect:

# Format and lint check
bun run check

# Build the JS / typings outputs for publishing
bun run build

Issues & Support

Kindly open an issue if you discover any bugs or have feature requests.

License

This repository is available under the MIT license. Read the LICENSE file for more information.