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

wheely-tco-mmv

v1.0.13

Published

Wheely TCO MMV widget. This widget delivers references to the TCOMMVWidget class, that allows you to create a new stand-alone Wheely MMV Widget. The widget expects certain parameters including your api key.

Downloads

6

Readme

Get started with wheely-tco-mmv

The widget allows the user to pass a custom user situation and a Make / Model / Version so a TCO calculation can be returned. The returned fields are set by the developer / marketer in the field key. Example widget at: https://codepen.io/rkuyper/full/mQQGBa/.

##Usage

const wheelyTCOMMV = require('wheely-tco-mmv');

wheelyTCOMMV.tcoMERKWidget(
    {
        api : 'api_key',
        id: 'target_element',
        options : {
            tracking : 'GTM-XXXXXX', // writes user behaviour to Google Tag Managers DataLayer
            height: 'height_of_widget', // leave empty if using wheely default height
            width : 'width_of_widget',  // leave empty if using wheely default width
            style : 'stylesheet_of_choice', // leave empty if using wheely default style
            color : 'button_color', // leave empty if using wheely default color
            fields : [MAP_OBJECT] // Returns the values you want to receive. See field values for explanation. Default is nothing.
        }
    }
);

##Cached data Each request is cached inside the global dataLayer namespace. You can search the cached data by listening to 'vehicleSearch' event.

let cachedData = window.dataLayer;

##Fields values For the example object returned below, map fields by parentKey '-' key. Example:

    {
        name : 'make-name',
        isVisible : true, // False if not visible
        isCurrency : false, // True if currency
        isEditable : false, // True if outcome has to editable
        isDropdown : false, // True if outcome is editable and a dropdown
        isImage : false,
        language : {
              nl :  'Merk'
        }
    }

Example of returned car object.

 "data": [{
    "id": 0, // returns response id
    "kenteken": "string", // Returns kenteken
    "make": {
      "id": 0, // make id
      "name": "string" // make name (i.e. Fiat)
    },
    "model": {
      "id": 0,    // model name (i.e. Punto)
      "name": "string"
    },
    "cataloguePrice": 0.0, // catalogue price of the car (US-based)
    "deliveryFee": 0.0, // Delivery fee of the car (US-based)
    "bpm": 0.0, // BPM of the car (US-based)
    "bodyType": {
      "id": 0, // Body type ID (API use only)
      "name": "string" //Body type description (i.e. hatchback, MPV)
    },
    "engineType": {
      "id": 0, // Engine type ID (API use only)
      "name": "string" // Engine type name (i.e. Diesel)
    },
    "transmissionType": {
      "id": 0, // Transmission type ID (API use only)
      "name": "string" // Transmission type name (i.e. automatisch, handgeschakeld)
    },
    "taxLiabilityType": {
      "year": 0, // Tax year
      "tariff": 0.00, // Tax tariff (US-based)
      "isCalculatedTariff": false // boolean
    },
    "discountValue": 0.0, // Discount value (US-based)
    "doors": 0, // Number of doors
    "nettoPrice": 0.0, // Netto price (US-based)
    "weight": 0, // Weight of the car
    "year": 2011, // Manufacturing year
    "totalInvestment": 0.00, // Total investment (US-based)
    "residualValue": 0.0, // Residual value (US-based)
    "monthlyCosts": {
      "installment": 0.00, // Monthly installment cost (US-based)
      "writeOff": 0.00, // Monthly write off cost (US-based)
      "insurance": {
        "liabilityInsurance": 0.00, // Liability insurance cost (US-based)
        "personalLiability": 0.00 // Personal Liability cost (US-based)
      },
      "maintenance": 0.00, // Maintainance cost (US-based)
      "fuel": 0.00, // Fuel cost (US-based)
      "roadTax": 0.0, // Road tax (US-based)
      "subTotal": 0.00, // Subtotal of all cost (US-based)
      "total": 0.00 // Total of all cost plus taxes (US-based)
    },
    "monthlyTaxEffects": {
      "bijtelling": 0.00, // Monthly bijtelling (US-based)
      "deductionMIA": 0.0, // Monthly deducation MIA (US-based)
      "deductionMonthlyCosts": 0.0, // Monthly deducation cost (US-based)
      "taxPrivateUse": 0.00 // Monthly tax private use (US-based)
    },
    "monthlyCostBusiness": 0.00, // Monthly total business cost (US-based)
    "monthlyCostPrivate": 0.00, // Monthly total private cost (US-based)
    "tco": 0.0, // Monthly TCO (US-based)
    "fiscalPrice": 0.00, // Fiscal price (US-based)
    "recommendedPrice": 0.00, // Recommended price (US-based)
    "recommendedPriceEx": 0.00, // Recommended price excl VAT (US-based)
    "odometer": 0, // Odometer in KM
    "isOwner": false, // Boolean
    "isMarginVehicle": false, // Boolean
    "registrationDate": "YYYY-MM-DDTHH:MM:SS", // Registration date
    "segment": "string" // Segment of cars
  }]