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

appcd-client

Package Overview
Dependencies
Maintainers
2
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appcd-client - npm Package Compare versions

Comparing version 0.0.0 to 1.0.0-1

dist/client.js

41

package.json
{
"name": "appcd-client",
"version": "0.0.0",
"description": "Coming soon!",
"version": "1.0.0-1",
"description": "The Node.js client for connecting to the Appc Daemon.",
"main": "./dist/client",
"author": "Axway, Inc. <npmjs@appcelerator.com>",

@@ -9,3 +10,37 @@ "maintainers": [

],
"license": "Apache-2.0"
"license": "Apache-2.0",
"keywords": [
"appcelerator",
"appc",
"appcd",
"daemon"
],
"scripts": {
"build": "gulp build",
"coverage": "gulp coverage",
"docs": "gulp docs",
"prepare": "gulp build",
"test": "gulp test"
},
"dependencies": {
"appcd-response": "1.0.0-1",
"appcd-util": "1.0.0-1",
"msgpack-lite": "^0.1.26",
"source-map-support": "^0.5.0",
"uuid": "^3.1.0",
"ws": "^3.3.1"
},
"devDependencies": {
"appcd-gulp": "1.0.0-1",
"gulp": "^3.9.1"
},
"homepage": "https://github.com/appcelerator/appc-daemon#readme",
"bugs": "https://github.com/appcelerator/appc-daemon/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/appcelerator/appc-daemon.git"
},
"engines": {
"node": ">=8.0.0"
}
}
# appcd-client
Coming soon!
The Node.js client for connecting to the Appc Daemon.
## Usage
```javascript
import Client from 'appcd-client';
const client = new Client();
client
.request('/appcd/status')
.on('response', status => {
console.log(status);
client.disconnect();
})
.on('error', err => {
console.error('ERROR!');
console.error(err);
});
```
## API Documentation
To generate API docs into static HTML files, run:
gulp docs
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