1.0.2 • Published 7 years ago

naics-sic-crosswalk v1.0.2

Weekly downloads
82
License
MIT
Repository
github
Last release
7 years ago

NAICS to SIC Crosswalk

NAICS has published a crosswalk PDF relevant for the years 2017-2022. I've translated that to JSON and published it as an NPM module. Pull requests welcome if you notice discrepancies.

Usage

Here's some examples of querying the data using lodash.

import xw from 'naics-sic-crosswalk'
import _ from 'lodash'

console.log(_.find(xw, {naics: '111120'}).sic)
console.log(_.find(xw, {naics: '111120'}).sicDescription)
console.log(_.find(xw, {sic: '0119'}).naics)
console.log(_.find(xw, {sic: '0119'}).naicsDescription)
1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago