New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

camomile-client

Package Overview
Dependencies
Maintainers
1
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.7.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by200%
Maintainers
1
Weekly downloads
 
Created
Source

Javascript client for Camomile REST API

Usage

HTML

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

Javascript

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

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

Server Sent Event


    client.listen(function(err, channel_id, eventSource) {
        var cancelWatcher = eventSource.watchCorpus(<corpus_id>, function(error, datas) {
            console.log(error, data);
        });
        
        // For unwatch Corpus :
        cancelWatcher();
    });
    

Documentation

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

Keywords

FAQs

Package last updated on 07 Oct 2016

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