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

car-vin-decoder

v1.0.1

Published

Simple Car Vin decoder

Readme

Welcome to Car Vin Decoder

Car vin decoder is a lightweight, fully-featured NPM package that can be used anywhere.

Installation

Car Vin Decoder is avalable as npm package

  npm install car-vin-decoder

Usage

Standard VIN (Vehicle Identification Number) decode

   
   import { vinDecoder } from 'car-vin-decoder';
   
   const result = vinDecoder("WAUZZZ8E05A410409").decode();
   
   //Return al information extracted from VIN: Manufacturer, Country of Origin, Year, Logo Image, etc;
   /*  
      {
        manufacturer: 'Audi',
        country: 'Germany',
        year: 2005,
        posibleYear: [ 2005 ],
        logoImage: 'https://www.car-logos.org/wp-content/uploads/2011/09/audi.png'
      }
   
   */

Complete VIN (Vehicle Identification Number) decode

   import { vinDecoder } from 'car-vin-decoder';
   
   const result = vinDecoder("WAUZZZ8E05A410409").decode_all_info();
   
   // Return all Standard information  + Serial Number, Assembly Plant, Security Code, etc;
  /*
   
    {
      manufacturer: 'Audi',
      country: 'Germany',
      year: 2005,
      posibleYear: [ 2005 ],
      serialNumber: '410409',
      securityCode: '0',
      assemblyPlant: 'A',
      details: 'ZZZ8E',
      logoImage: 'https://www.car-logos.org/wp-content/uploads/2011/09/audi.png'
    }
   
  */
  
  

Get any vehicle Logo from manufacturer name or VIN

    import { getVehicleLogo } from 'car-vin-decoder';
    
    const image_url = getVehicleLogo("Skoda"); // Return image url to Skoda Logo
    console.log(image_url)

Separate Information

  import { vinDecoder } from 'car-vin-decoder';
  
  const result = vinDecoder("WAUZZZ8E05A410409");
 

1) Extract Manufacturer

   const manufacturer = result.manufacturer()

2) Extract Country

   const country = result.country()

3) Extract Year

   const year = result.year()

4) Extract Logo Image

   const image = result.logoImage()

5) Extract Serial Number

   const serial_number = result.serialNumber()

6) Extract Security Code

   const security_code = result.securityCode()

7) Extract Other Details

   const details = result.details()

7) Extract Assembly Plant

   const assembly_plant = result.assemblyPlant()