@teclone/industries
TypeScript icon, indicating that this package has built-in type declarations

1.2.0 • Public • Published

Industries

Exports list of industry categories, reusable for website implementations, picked from linkedin.

Installation

module is available on npm

npm install @teclone/industries

Usage

import { industries } from '@teclone/industries';

industries.foreach(industry => {
  console.log(industry); // {id: number, linkedinId: number, name: string};
});
import industriesInSpanish from '@teclone/industries/es';

industriesInSpanish.foreach(industry => {
  console.log(industry); // {id: number, linkedinId: number, name: string};
});
import { supportedLocales, getIndustriesByLocale } from '@teclone/industries';

supportedLocales.foreach(loc => {
  getIndustriesByLocale(loc).foreach(industry => {
    console.log(industry); // {id: number, linkedinId: number, name: string};
  });
});

Readme

Keywords

none

Package Sidebar

Install

npm i @teclone/industries

Weekly Downloads

18

Version

1.2.0

License

MIT

Unpacked Size

110 kB

Total Files

30

Last publish

Collaborators

  • teclone