🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

camomile-client

Package Overview
Dependencies
Maintainers
3
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

camomile-client

Javascript client for Camomile REST API

0.9.0
latest
Source
npm
Version published
Weekly downloads
4
100%
Maintainers
3
Weekly downloads
 
Created
Source

Javascript client for Camomile REST API

NPM version

Installation

npm install camomile-client

Usage

HTML

  <script type="text/javascript" src="camomile.js"></script>

Javascript

  var client = new Camomile('http://camomile.fr/api');
  client.login('username', 'password');
  client.logout();

  client.getCorpora();
  client.createCorpus(...);

Server Sent Event

See listen.js

var listener=function(error, data) {
  console.log(error, data);
};

var client=new Camomile('http://camomile.fr/api');
client
  .login('username', 'password')
  .then(result =>  {
    console.log(result);
    return client.watchCorpus(corpusId, listener);
  })
  .then(() => {
      // To unwatch the corpus :

      //client.unwatchCorpus(corpusId, listener);
    })
  .catch(err => console.log(err));

Documentation

Will be available at http://camomile-project.github.io/camomile-server/

Keywords

camomile

FAQs

Package last updated on 26 Mar 2018

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