npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cncjs-controller

v2.0.0-alpha.2

Published

A controller library for event-based communication between client and CNCjs server.

Downloads

430

Readme

cncjs-controller build status Coverage Status

NPM

A controller library for event-based communication between client and CNCjs server

This branch is for CNCjs 2.0.0 or later versions. If you're looking for the previous version (<= 1.9), please visit the v1 branch.

Installation

npm install --save cncjs-controller@latest
npm install --save [email protected]  # socket.io-client 1.7 is recommended

Usage

import io from 'socket.io-client';
import Controller from 'cncjs-controller';

const controller = new Controller(io);
const host = ''; // or 'http://127.0.0.1:8000'
const token = '...'; // Authorization token
const options = {
    query: 'token=' + token
};

controller.connect(host, options, () => {
    const controllerType = 'Grbl'; // Grbl|Smoothie|TinyG
    const connectionType = 'serial'; // serial|socket
    const serialOptions = {
        path: '/dev/cu.wchusbserialfa130',
        baudRate: 115200
    };

    // Open a serial connection
    controller.open(controllerType, connectionType, serialOptions, (err) => {
        if (err) {
            console.error(err);
            return;
        }

        controller.writeln('$$'); // View Grbl Settings
    });

    // Disconnect after 60 seconds
    setTimeout(() => {
        controller.close((err) => {
            controller.disconnect();
        });
    }, 60 * 1000);
});

controller.addListener('connection:open', (options) => {
    const { ident, type, settings } = options;

    if (type === 'serial') {
        const { path, baudRate } = { ...settings };
        console.log(`Connected to ${path} with a baud rate of ${baudRate}`);
    } else if (type === 'socket') {
        const { host, port } = { ...settings };
        console.log(`Connected to ${host}:${port}');
    }
});

controller.addListener('connection:close', (options) => {
    const { type, settings } = options;

    console.log(`Connection closed: type=${type}, settings=${JSON.stringify(settings)}`);
});

controller.addListener('connection:write', (data, context) => {
    console.log('>', data);
});

controller.addListener('connection:read', (data) => {
    console.log('<', data);
});

API Events

CNCjs Events

Event: 'startup'

  • data (Object) data object
  • data.availableControllers (Array) a list of all available controllers

Fired upon system startup.

Event: 'config:change'

Fired whenever config changes.

Event: 'task:start'

  • taskId (String) task id

Fired when a task is started.

Event: 'task:finish'

  • taskId (String) task id
  • code (Number) exit code

Fired when a task is finished.

Event: 'task:error'

  • taskId (String) task id
  • error (Object) error object

Fired when an error occurred.

Event: 'controller:type'

  • type (String) controller type

Fired when the controller type changes.

Event: 'controller:settings'

  • type (String) controller type
  • settings (Object) controller settings

Fired when the controller settings changes.

Event: 'controller:state'

  • type (String) controller type
  • state (Object) controller state

Fired when the controller state changes.

Event: 'connection:open'

  • options (Object) connection options

Fired upon a connection open.

Event: 'connection:close'

  • options (Object) connection options

Fired upon a connection close.

Event: 'connection:change'

  • options (Object) connection options
  • isOpen (Boolean) True if the connection is open, flase otherwise.

Fired upon a connection change.

Event: 'connection:error'

  • options (Object) connection options
  • error(Object) error object

Fired upon a connection error.

Event: 'connection:read'

  • options (Object) connection options
  • data (String) data to read

Fired once a line is received from the connection.

Event: 'connection:write'

  • options (Object) connection options
  • data (String) data to write
  • context (Object) associated context information

Fired when writing data to the connection.

Event: 'feeder:status'

  • status (Object) feeder status

Fired when the feeder status changes.

Event: 'sender:status'

  • status (Object) sender status

Fired when the sender status changes.

Event: 'sender:load'

  • data (String) data to load
  • context (Object) associated context information

Fired when a G-code program is loaded.

Event: 'sender:unload'

Fired when a G-code program is unloaded.

Event: 'workflow:state'

  • state (String) workflow state

Fired when the workflow state changes.

Event: 'message'

  • message (String) message string

Fired when the server sends message to the client.

Socket.IO Events

Event: 'connect'

Fired upon a connection including a successful reconnection.

Event: 'connect_error'

  • error (Object) error object

Fired upon a connection error.

Event: 'connect_timeout'

Fired upon a connection timeout.

Event: 'error'

  • error (Object) error object

Fired when an error occurs.

Event: 'disconnect'

  • reason (String) either 'io server disconnect' or 'io client disconnect'

Fired upon a disconnection.

Event: 'reconnect'

  • attempt (Number) reconnection attempt number

Fired upon a successful reconnection.

Event: 'reconnect_attempt'

Fired upon an attempt to reconnect.

Event: 'reconnecting'

  • attempt (Number) reconnection attempt number

Fired upon a successful reconnection.

Event: 'reconnect_error'

Fired upon a reconnection attempt error.

Event: 'reconnect_failed'

Fired when couldn't reconnect within reconnectionAttempts.

API Methods

connect(host = '', options, [callback])

Establish a connection to the server.

Arguments

  1. host (string):
  2. options (object):
  3. [callback] (function): The callback function.

disconnect([callback])

Disconnect from the server.

Arguments

  1. [callback] (function): The callback function.

addListener(eventName, listener)

Adds the listener function to the end of the listeners array for the event named eventName.

Arguments

  1. eventName (string): The name of the event.
  2. listener (function): The listener function.

removeListener(eventName, listener)

Removes the specified listener from the listener array for the event named eventName.

Arguments

  1. eventName (string): The name of the event.
  2. listener (function): The listener function.

open(controllerType, connectionType, options, [callback])

Opens a connection.

Arguments

  1. controllerType (string): One of: 'Grbl', 'Smoothe', 'TinyG'.
  2. connectionType (string): One of: 'serial', 'socket'.
  3. options (object): The options object.
  4. options.path (string): serial The serial port referenced by the path.
  5. [options.baudRate=115200] (string): serial The baud rate.
  6. options.host (string): socket The host address to connect.
  7. [options.port=23] (string): socket The port number.
  8. [callback] (string): Called after a connection is opened.

close([callback])

Closes an open connection.

Arguments

  1. [callback] (string): Called once a connection is closed.

command(cmd, ...args)

Executes a command on the server.

Arguments

  1. cmd (string): The command to execute.

write(data, [context)

Writes data to the open connection.

Arguments

  1. data (string): The data to write.
  2. [context] (object): The associated context information.

writeln(data, [context])

Writes data and a newline character to the open connection.

Arguments

  1. data (string): The data to write.
  2. [context] (object): The associated context information.

getPorts([callback])

Gets a list of available serial ports.

Arguments

  1. [callback] (function): The error-first callback.

getBaudRates([callback])

Gets a list of supported baud rates.

Arguments

  1. [callback] (function): The error-first callback.

getMachineState()

Gets the machine state.

Return

(string|number): Returns the machine state.

getMachinePosition()

Gets the machine position.

Return

(object): Returns a position object which contains x, y, z, a, b, and c properties.

getWorkPosition()

Gets the work position.

Return

(object): Returns a position object which contains x, y, z, a, b, and c properties.

getModalState()

Gets modal state.

Return

(object): Returns the modal state.

API Properties

Name | Type | Default | Description :--- | :--- | :------ | :---------- connected | boolean | | Whether the client is connected to the server. availableControllers | array | | A list of available controllers. type | string | | The controller type. One of: Grbl, Smoothie, TinyG. settings | object | | The controller settings. state | object | | The controller state. connection | object | | The connection object. connection.ident | string | | The connection identifier. connection.type | string | | The connection type. One of: serial, socket. connection.settings | object | | The connection settings.serial: { path, baudRate }socket: { host, port } workflow | object | | The workflow object. workflow.state | string | | The workflow state. One of: idle, paused, running.

License

MIT