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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ratenkaufbyeasycredit/easycredit-merchant-interface

v1.1.1

Published

The ratenkauf by easyCredit Transaction Manager enables merchants to manage payment transactions from any eCommerce store backend. It is integrated as backend widget and shipped as part of the store plugins for the following eCommerce systems:

Downloads

3

Readme

ratenkauf by easyCredit Transaction Manager

The ratenkauf by easyCredit Transaction Manager enables merchants to manage payment transactions from any eCommerce store backend. It is integrated as backend widget and shipped as part of the store plugins for the following eCommerce systems:

  • Magento 1
  • Magento 2
  • Shopware 5
  • Shopware 6
  • wooCommerce

Getting started

Download one of the mentioned plugins and both, the transaction manager and the status widget, will be already integrated.

Usage / Integration

If you use one of the eCommerce systems mentioned above, just install the corresponding plugin and stop reading. If you want to integrate the widget in a new system, read on.

The transaction manager and the status widget are built as a single Vue.js app and can be used in any website by adding an HTML tag and endpoints for the transaction management.

General Configuration

To get the transactions from the eCommerce system the system needs to offer a transaction endpoint implemented as REST API. Authentication can be implemented using the request_config parameter which is passed to fetch. The specified endpoints need to authenticate with ratenkauf by easyCredit internally.

<script>
var ratenkaufbyeasycreditOrderManagementConfig = {
  endpoints: {
    get: 'https://url.to/wp-json/easycredit/v1/transaction',
    list: 'https://url.to/wp-json/easycredit/v1/transactions',
    post: 'https://url.to/wp-json/easycredit/v1/transaction'
  },
  request_config: {
    headers: {
      'Content-Type': 'application/json',
      'Authorization': 'Bearer 12345678' // possibly needed for authentication
    }
  }
}
</script>

Transaction Manager

To add the transaction manager use the following custom tag:

<easycredit-merchant-manager id="VF12345" date="2021-01-01" />

Status Widget

To add the status widget use the following custom tag:

<easycredit-merchant-status-widget id="VF12345" date="2021-01-01" />

Both widgets take the same arguments where as:

  • id is the id for the transaction ("Vorgangsnummer").
  • date is the transaction date. The date is used to determine the transaction state in comparison to the current date (> 1 day: "Waiting", < 1 day: "Not available").

Building / Developing

The app can be built like any other Vue.js app:

yarn install
yarn run serve
yarn run build

License

Security

If you have discovered a security vulnerability, please email [email protected].