npm.io
1.2.0 • Published 8 years ago

nhtsa-vehicle

Licence
MIT
Version
1.2.0
Deps
1
Size
90 kB
Vulns
22
Weekly
0
Stars
13
DeprecatedThis package is deprecated

nhtsa-vehicle CircleCI

A NPM package for fetching and parsing vehicle data from the NHTSA Vehicle API

Basic usage

const NHTSA = require('nhtsa-vehicle');

(async () => {
  const { data } = await NHTSA.decodeVin('WUAAU34248N006164');

  console.log(data);
})();

Try it out in your browser!