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

vue-giveworks-form

v0.9.13

Published

This plugin provides Vue.js component for the open [http://giveworks.net](Giveworks Platform).

Downloads

1,101

Readme

VueGiveworksForm

This plugin provides Vue.js component for the open [http://giveworks.net](Giveworks Platform).

Dependencies

This component requires the following dependencies.

Installation

Given the plugin relies on the previous dependencies, there are a couple different ways to install the plugin. This library takes advantage of semantic versioning, and each release is not only available on NPM, but it's also pushed to multiple CDN's for fast and cacheable delivery.

NPM

npm install vue lodash-es moment axios vue-giveworks-form --save

// ES6
import Vue from 'vue';
import VueGiveworksForm from 'vue-giveworks-form';

Vue.use(VueGiveworksForm);

CDN

It's also possible to include the library and the required dependencies directly with scripts.

// Dependencies
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/axios.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/min/moment.min.js"></script>

Since the library uses semantic versioning, there are two ways to include the library. Always use the latest version...

<script src="https://cdn.jsdelivr.net/npm/vue-giveworks-form"></script>

Since the library may change over time, it may be desired to update manually so only well tested, and stable version are used on client pages. To see an overview of the available versions, check the CDN package directory.

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue-giveworks-form.min.js"></script>

Basic Usage

To load the page data asynchronously given a page ID...

<giveworks-form
    page-id="YOUR_PAGE_ID"
    api-key="YOU_API_KEY">
</giveworks-form>

Horizontal Orientation

<giveworks-form
    page-id="YOUR_PAGE_ID"
    api-key="YOU_API_KEY"
    orientation="horizontal">
</giveworks-form>

Preload Page w/JSON object

You can skip loading the page asynchronously if the page JSON payload is already available. PAGE_JSON is just meant to be replaced with the page JSON, whether its with a Twig or Javascript.

IMPORTANT - You must assign the global variable GiveworksFormOptions to the window namespace BEFORE you load the vue-giveworks-form.js script.

<giveworks-form
    :data="page"
    api-key="YOU_API_KEY">
</giveworks-form>

<script type="text/javascript">
    // Insert your page JSON here... If coming from a Twig template, this
    var PAGE_JSON = {{ page.toJson() }};
    var GiveworksFormOptions = {
        data: {
            page: PAGE_JSON
        }
    }
</script>
<script src="https://cdn.jsdelivr.net/npm/vue-giveworks-form/dist/vue-giveworks-form.min.js"></script>