Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@vtfk/company-info

Package Overview
Dependencies
Maintainers
5
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vtfk/company-info

Get information regarding our schools and other companies

  • 0.3.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
5
Created
Source

Build Status js-standard-style

company-info

Information regarding our different locations

Includes information about our:

  • 30 Schools
  • 25 Dentists Offices

Installation

$ npm i @vtfk/company-info

Usage

Call the module with no options to list all different companies. The type property will reflect what the object is (school / dentist). See more available methods below

In every call you can pass an object to filter out items from your search result. All properties can be used as a filtered.


Get all companies

const getCompanies = require('@vtfk/company-info')

console.log(getCompanies()) //=> All companies with 'type'

Schools

const { getSchools } = require('@vtfk/company-info')

const options = {
  name: {
    short: 'SKOV'
  }
}

console.log(getSchools()) //=> All schools

console.log(getSchools(options)) //=> Schools with shortName SKOV

Dentist offices

const { getDentists } = require('@vtfk/company-info')

const options = {
  address: {
    city: 'HORTEN'
  }
}

console.log(getDentists()) //=> All dentist offices

console.log(getDentists(options)) //=> All dentist offices within HORTEN.

License

MIT

Keywords

FAQs

Package last updated on 19 Feb 2021

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc