New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

simple-donation

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-donation

A customizable donation module for Nuxt 3 projects

latest
Source
npmnpm
Version
1.3.4
Version published
Maintainers
1
Created
Source

Simple donation module for Nuxt

Last Commit License Language npm version npm downloads

A customizable donation component for Nuxt 3 and Nuxt 4 projects, with PayPal integration for one-time donations in EUR.

Live demo

You can see it in action at https://wikiherbalist.com/donazioni.

Features

  • Compatible with Nuxt 3 and Nuxt 4
  • PayPal integration for secure payments
  • Customizable donation amounts
  • Multilingual support: EN, IT, ES, FR, DE
  • Responsive design with Tailwind CSS
  • Configurable color scheme via CSS variables
  • Custom FAQ sidebar
  • XSS protection via DOMPurify sanitization
  • Full TypeScript support

Requirements

  • Nuxt 3.x or Nuxt 4.x
  • Node.js 18.x or higher

Installation

  • Install the package:
npm install simple-donation
# or
yarn add simple-donation
  • Add the module to your nuxt.config.ts as described in the Configuration section.

  • Create a .env file in your project root and add your PayPal client ID:

PAYPAL_CLIENT_ID=your_paypal_client_id_here

Usage

Once installed and configured, add the component to any page or component:

<template>
  <div>
    <h1>Support our project</h1>
    <SimpleDonation />
  </div>
</template>

Configuration

Configure the module in nuxt.config.ts:

export default defineNuxtConfig({
  modules: [
    ['simple-donation', {
      paypal: {
        clientId: process.env.PAYPAL_CLIENT_ID
      },
      colors: {
        primary: '#3B82F6',   // main buttons and highlights
        secondary: '#1E40AF', // secondary elements
        accent: '#60A5FA',    // accents and focus states
        background: '#FFFFFF' // component background
      }
    }]
  ]
})

Customization

Language

Use the lang prop to set the component language. Supported values: en, it, es, fr, de. Defaults to en.

<SimpleDonation lang="it" />

All UI labels, step names, button text, and default FAQ content will be displayed in the chosen language.

Color scheme

The four color options available are:

  • primary: main color for buttons and highlights
  • secondary: used for secondary elements and hover states
  • accent: used for accents and focus states
  • background: background color of the component

Custom FAQs

Pass a faqs prop to override the default FAQ items shown in the sidebar:

<template>
  <div>
    <SimpleDonation lang="it" :faqs="customFaqs" />
  </div>
</template>

<script setup>
const customFaqs = [
  {
    question: 'Come vengono utilizzate le donazioni?',
    answer: 'Le donazioni supportano lo sviluppo e la manutenzione del progetto.'
  },
  {
    question: 'Il sistema è sicuro?',
    answer: 'Sì, tutte le transazioni utilizzano sistemi con elevati livelli di sicurezza.'
  },
  {
    question: 'Posso fare una donazione ricorrente?',
    answer: 'Al momento supportiamo solo donazioni una tantum.'
  }
]
</script>

Each FAQ item needs a question and an answer property. HTML is allowed and automatically sanitized.

Roadmap

  • Multiple currencies: support for currencies other than EUR.
  • Recurring donations: let donors set up a monthly contribution.
  • More payment options: including cryptocurrency.
  • Automatic thank-you emails to donors after each transaction.

Contributing

Contributions are welcome. Feel free to open an issue or submit a pull request on GitHub.

License

This project is open source and available under the MIT License.

Keywords

nuxt

FAQs

Package last updated on 16 Mar 2026

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