@canoeh/nocs
Version:
Canadian National Occupational Classification (NOC) data and utilities
62 lines (40 loc) • 1.46 kB
Markdown
<p align="center">
<img src="https://gist.githubusercontent.com/sagunji/8c0138a7af3e4cb16059261c1a8be691/raw/d26d6d84abdbd1277747565b574f252fa9ab63c0/canoeh.svg" alt="Canada NOCs Logo" height="120"/>
</p>
A simple package to work with Canadian National Occupational Classification (NOC) codes.
## Installation
```bash
npm install @canoeh/nocs
# or
pnpm add @canoeh/nocs
```
## Usage
```js
import { getNOCByCode, getAllNOCs, searchNOCs } from "@canoeh/nocs";
// Get a specific NOC
const noc = getNOCByCode("00010");
console.log(noc.title_en); // "Legislators"
// Get all NOCs
const allNocs = getAllNOCs();
// Search NOCs by text
const searchResults = searchNOCs("software engineer");
console.log(searchResults[0].title_en); // "Software engineers and designers"
console.log(searchResults[0].noc_code); // "21231"
```
Returns a NOC object for the given code.
Returns an array of all NOC objects.
Returns an array of NOC objects that match the search query. The search is performed on:
- NOC code
- English title
- French title
- English description
- French description
The data is sourced from [Statistics Canada](https://www.statcan.gc.ca/en/subjects/standard/noc/2021/indexV1) and is provided under the [Open Government Licence - Canada](https://open.canada.ca/en/open-government-licence-canada).
MIT