Socket
Book a DemoInstallSign in
Socket

cylon-api-http

Package Overview
Dependencies
Maintainers
3
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cylon-api-http

HTTP API add-on module for Cylon.JS

0.4.1
latest
Source
npmnpm
Version published
Weekly downloads
10
233.33%
Maintainers
3
Weekly downloads
 
Created
Source

Cylon.js API plugin for HTTP

Cylon.js (http://cylonjs.com) is a JavaScript framework for robotics, physical computing, and the Internet of Things (IoT).

API plugins are separate from the Cylon.js main module, to allow for greater modularization of Cylon robots.

This repository contains the Cylon API plugin for HTTP.

For more information about Cylon, check out the repo at https://github.com/hybridgroup/cylon

Build Status Code Climate Test Coverage

How To Install

$ npm install cylon cylon-api-http

How To Use

With both of these modules installed, you can make your robots accessible over HTTP:

"use strict";

var Cylon = require("cylon");

Cylon.api("http", {
  ssl: false // serve unsecured, over HTTP

  // optional configuration here.
  // for details see 'Configuration' section.
});

Cylon.robot({
  name: "Maria",

  connections: {
    arduino: { adaptor: 'firmata', port: '/dev/ttyACM0' }
  },

  devices: {
    led: { driver: 'led', pin: 13 }
  },

  work: function() {
    // we'll interact with this robot through the API
  }
}).start();

How To Connect

Once you've got a Cylon instance with the API configured and running, you can use cURL to test it out:

  $ curl http://127.0.0.1:4000/api/robots/Maria
  { "robot": { "name": "Maria" /* ... */ } }

Routes

This plugin follows the CPPP-IO specification.

To get started, you can visit the /api route in your browser to get an overview of the Cylon Master Control Program (MCP). This provides a high level overview of your program:

  $ curl http://127.0.0.1:4000/api | python -m json.tool
  {
      "MCP": {
          "commands": [ ],
          "events": [ ],
          "robots": [
              {
                  "name": "Maria",
                  "connections": [
                      {
                          "name": "arduino",
                          "adaptor": "firmata",
                          "details": { "port": "/dev/ttyACM0" }
                      }
                  ],
                  "devices": [
                      {
                          "name": "led",
                          "commands": [ "toggle" ],
                          "connection": "arduino",
                          "details": { "pin": "13" },
                          "driver": "LED"
                      }
                  ],
                  "commands": [ ],
                  "events": [ ]
              }
          ]
      }
  }

For details on other available routes in the API and expected responses, please see the [specification document][spec].

Robeaux

This plugin includes a default front-end in Robeaux.

Robeaux is a simple tool to use against the HTTP API, and explore your robots visually, while also able to issue commands to robots and listen for events.

Configuration

OptionDescription
hostWhat HTTP host to serve from. Defaults to 127.0.0.1.
portWhat HTTP port to serve on. Defaults to 3000.
authWhat authorization scheme to use. e.g. { type: "basic", user: "username", pass: "password"}. Defaults to false.
CORSCross-Origin Resource Sharing option (HTTP Header: "Access-Control-Allow-Origin"). Defaults to "*".
serveDirDirectory to serve as static assets. Defaults to the included Robeaux installation.
sslSSL key and cert options, wrapped as an object. Set to false for an unsecured API. Defaults to included self-signed certs.

Documentation

We're busy adding documentation to cylonjs.com. Please check there as we continue to work on Cylon.js.

Thank you!

Contributing

For our contribution guidelines, please go to https://github.com/hybridgroup/cylon/blob/master/CONTRIBUTING.md.

Release History

For the release history, please go to https://github.com/hybridgroup/cylon-api-http/blob/master/RELEASES.md.

License

Copyright (c) 2014-2016 The Hybrid Group. Licensed under the Apache 2.0 license.

Keywords

cylon

FAQs

Package last updated on 05 May 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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.