1.0.2 • Published 6 years ago

flightworker-service v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

#flightworker-service

API

    // service.js
    const Service = require('flightworker-service').service
    const $service = new Service({port: 8011})
    //注册功能
    $service.bootstrap({
        'TEST': function*(params){
            return null
        }
    })
    $service.watch()

    // client.js
    const Client = require('flight-service').client
    const $client = new Client({port: 8011})
    $client.send({
        type: 'TEST',
        params: {'do something': ''}
    })
1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago