2.2.2 • Published 1 year ago

sic-code-list v2.2.2

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

Standard industrial classification SIC code list in accordance to the SEC

Installation

npm i sic-code-list

Usage

Pass in an SIC code as an array of codes and retrieve the content:

import { lookupSICCode } from "sic-code-list";

async function fetchSICContent() {
  try {
    const data = await lookupSICCode([100, 200]);
    console.log(data);
  } catch (error) {
    console.error(error);
  }
}

fetchSICContent();

Response:

[
  {
    "sicCode": 100,
    "office": "Industrial Applications and Services",
    "industry": "AGRICULTURAL PRODUCTION-CROPS"
  }
]
2.2.2

1 year ago

2.2.1

1 year ago

2.1.1

1 year ago

2.1.0

1 year ago

2.0.0

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago