Socket
Book a DemoInstallSign in
Socket

@fons/fons

Package Overview
Dependencies
Maintainers
5
Versions
146
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fons/fons

Fons Javascript Library

latest
Source
npmnpm
Version
6.2.5
Version published
Maintainers
5
Created
Source

fons.js Circle CI

Javascript SDK Library

Using

Example confirming an existing appointment

var Fons = require("@fons/fons");

var fons = new Fons();
fons.login("username", "password");

fons.appointment.confirm.v2("appointmentId").then(function(){
    return fons.appointment.get.v2("appointmentId");
}).then(function(confirmedAppointment) {
    // Update your local copy with a now confirmed appointment
}).catch(function(err) {
    console.log(err);
});

Tests

Node.js

  • npm install -g mocha
  • npm install
  • mocha

FAQs

Package last updated on 28 May 2019

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