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

appcd

Package Overview
Dependencies
Maintainers
3
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appcd

A daemon that powers Appcelerator tooling and makes the impossible possible.

  • 1.0.0-28
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6
decreased by-33.33%
Maintainers
3
Weekly downloads
 
Created
Source

appcd

Background server for running services.

Installation

npm install -g appcd

Quick Start

Start the server:

appcd start

Start the server in debug mode:

appcd start --debug

Stop the server:

appcd stop

For fast development iteration:

gulp watch

# or

npm run watch

Query the status of the server:

appcd status

View server log output:

appcd logcat

Configuration

appcd is designed to use sensible defaults. However, to override these defaults appcd supports loading a a CommonJS formatted JavaScript file:

~/.appcelerator/appcd/config.json

Example:

{
    "android": {
        "ndk": {
            "searchPaths": [
                "/opt/android-ndk"
            ]
        },
        "sdk": {
            "searchPaths": [
                "/opt/android-sdk"
            ]
        }
    }
}

WebSocket Protocol

Any WebSocket capable platform can connect to appcd as long as it follows the appcd protocol.

Each request must be a serialized JSON object that contains a version, id, path, and optionally a data payload and source containing a type and a name.

The following is an example of a web browser that issues a status request:

var ws = new WebSocket('ws://127.0.0.1:1732');
ws.onopen = function () {
	ws.onmessage = function (evt) {
		console.log('Got status!');
		console.log(evt.data);
		ws.close();
	};

	ws.send(JSON.stringify({
		version: '1.0',
		path: '/appcd/status',
		id: '123456',
		data: { interval: 2000 }
	}));
};

Architecture

The appcd server is designed to run as a detached background process. Basic operations are performed using the appcd CLI.

Internally, the appcd server uses a web server to facilitate requests over HTTP and via WebSockets. The service endpoints can register themselves to respond to either protocol, however there are some implementation differences.

HTTP requests flow through the Koa.js web application framework and use a traditional router API that supports REST API requests as well as static file serving.

WebSocket requests use a custom protocol and the requests are handled by a dispatcher. This dispatcher allows endpoints to register request handlers. The dispatcher supports nested dispatchers which is used for plugin namespace scoped dispatchers. Additionally, the WebSocket interface allows bi-directional communication between the server and client. This enables the server to "stream" data to the client such as log output.

Logger

appcd uses a custom logger that supports output buffering, streaming, and colored output.

When the logger is written to, the output is buffered as well as piped to all registered writable streams.

The output may contain ANSI color sequences. The colors are only stripped when being piped to an output stream that explicitly does not support colors.

Service Plugins

Service plugins allow you to add new services to the appc daemon. The appc daemon will load and initialize them. Services must use the API defined by the "appcd" module in order for things to work.

Keywords

FAQs

Package last updated on 28 Nov 2017

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