Socket
Book a DemoInstallSign in
Socket

@internetarchive/donation-form-data-models

Package Overview
Dependencies
Maintainers
13
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@internetarchive/donation-form-data-models

Internet Archive Donation Form Data Models

npmnpm
Version
0.3.2-alpha.3
Version published
Weekly downloads
30
-9.09%
Maintainers
13
Weekly downloads
 
Created
Source

Donation Form Data Models

The data models for the Internet Archive donation form

Installation

yarn add @internetarchive/donation-form-data-models

Usage

This is meant to be used in conjunction with the Internet Archive donation form, but you can instantiate the models:

import {
  CustomerInfo,
  DonationPaymentInfo,
} from '@internetarchive/donation-form-data-models';

const customer = new CustomerInfo({
  email: 'foo@bar.com',
  firstName: 'Fooey',
  lastName: 'McBarrison',
});

const donationInfo = new DonationPaymentInfo({
  donationType: DonationType.OneTime,
  amount: 3.5,
  coverFees: false,
});

// donationInfo.total = 3.5

Development

Prerequisite

yarn install

Start Development Server

yarn start

Testing

yarn test

Testing via browserstack

yarn test:bs

Linting

yarn lint

FAQs

Package last updated on 06 Aug 2021

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