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

recruitee

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

recruitee

Recruitee API wrapper

  • 0.4.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Recruitee Node.js Library

The Recruitee Node library is a simple wrapper for the Recruitee Private API for applications written in Node.js.

Installation

Install the package with:

npm install recruitee --save

Usage

To start using the library, create a new instance of the Recruitee class and pass it your company ID and API token. Both of these can be found on your Recruitee dashboard.

const Recruitee = require('recruitee');
const client = new Recruitee('YOUR_COMPANY_ID', 'YOUR_API_TOKEN');

All API methods return promises, which means you can chain them to create complex workflows:

const candidateId = 123;

client.candidates.fetch(candidateId)
  .then((candidate) => {
    return client.evaluations.create(candidateId, {
      kind: "template_form",
      rating: "yes",
      rating_note: "Awesome interview!"
    });
  })

Development

Run the test suite with:

npm test

Keywords

FAQs

Package last updated on 20 Aug 2020

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