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

porsche-widget

v1.0.36

Published

Porsche widget

Downloads

48

Readme

Porche Widget

Install via npm:

npm install porsche_widget

You have to know the password for the package.

After install you have to add the index.js file from package/dist folder.

Init the plugin like that in javascript:

var porsche_widget = new PorscheWidget(button);
prosche_widget.init();

You can customize the button and modal with parameters in init method:

Parameters:

1. Text button:
    - You can add your own text inside the button.
    - example: porsche_widget.init('Button text');
2. Second parameter is for details about car if you have:
    - Should to send an object which can take next properties: price, cylindrical_capacity and car_name
    - example: porsche_widget.init(null, {
        'price' : 5000,
        'cylindrical_capacity' : 1900,
        'car_name' : 'Porche'
    })
3. The 3rd parameter is for styling modal if you want to change it a little bit:
    - Should to send an object which can take next properties:
        - background
        - top-text (for change the title and subtitle text from modal)
        - show-top-text (defaul: true, for display or not the top text from modal)
        - font-size-h1 (for change the font size for h1 inside the modal)
        - font-family-h1 (for change the family font for h1 inside the modal)
        - font-size-h3 (for change the font size for h3 inside the modal)
        - font-family-h3 (for change the family font for h3 inside the modal)
        - font-size-p (for change the font size for paragraph inside the modal)
        - font-family-p (for change the family font for paragraph inside the modal)
        - font-size-label (for change the font size for label inside the modal)
        - font-family-label (for change the font family for label inside the modal)
        - font-size-li (for change the font size for list item inside the modal)
        - font-family-li (for change the font family for list item inside the modal)
        - font-size-button (for change the font size for buttons inside the modal)
        - font-family-button (for change the font family for buttons inside the modal)

    - example: porsche_widget.init(null, {}, {
        'background': '#317CFE'
        'show-bottom-text' : false,
        'font-size-h1' : '24px'
        'font-family-h1' : 'Poppins-Bold, sans-serif'
    });