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

seneca-client

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

seneca-client

Encapsulation seneca client

  • 0.0.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-75%
Maintainers
1
Weekly downloads
 
Created
Source

seneca-client

Build Status

seneca client for xunyijia

Install

$ npm install seneca-client --save

Test

$ npm install
$ mocha test

Client

const Client = require('seneca-client'); 
const exampleClient = new Client({port: 10100, host: 'localhost'});
  • port The seneca service port
  • host The seneca service host

Usage

支持回调模式和promise模式

const Client = require('seneca-client'); 
const exampleClient = new Client({port: 10100, host: 'localhost'});

exampleClient.send({module: 'test', cmd: 'run', data: {test: 'test success'}}, function (err, result) {
  console.log(err);
  console.log(result);
});

exampleClient.send({module: 'test', cmd: 'run', data: {test: 'test success'}}).then((result) => {
  console.log(result);
}).catch((err) => {
  console.log(err);
});
  • module|service|role
  • cmd
  • data

License

The MIT License

Keywords

FAQs

Package last updated on 20 Jan 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