Socket
Book a DemoInstallSign in
Socket

naics-sic-crosswalk

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

naics-sic-crosswalk

NAICS to SIC conversion table in JSON format.

unpublished
latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

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)

Keywords

naics

FAQs

Package last updated on 30 Aug 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts