Skip to content
/ 32960 Public
forked from terryhart/32960

解析库,中国国家标准——电动汽车的通信协议及数据交换格式

License

Notifications You must be signed in to change notification settings

aaronuu/32960

 
 

Repository files navigation

@36node/32960

NPM version NPM downloads CircleCI codecov donate

Usage

电动汽车 32960 协议服务端

use this @36node/32960 as a parser or builder

import { Protocol } from "@36node/protocol-32960";

// buffer: origin data
const protocol = new Protocol({ encrypt: { key: "xx", iv: "xxx", method: "AES128" } });
const data = protocol.parse(buffer);
const buf = protocol.build(data);

use as a default server

Provide a simple default server, which power the 100% standard 32960 protocol.

import { server } from "@36node/protocol-32960";

server.listen(3000, () => console.log(`app started at port 3000`));

use in cli

yarn global add @36node/protocol-32960
APP_PORT=3000 32960

## platform AUTH
APP_AUTH="yutong:222,wanxiang:455" APP_PORT=3000 32960

use in whisper

whisper is a koa style tcp server, get more from 36node/whisper

please follow the code in src/server.js

use parse

Parse a hex binary data:

$ yarn parse -h

Usage: parse [options]

Parse binary message data

Options:
  -d, --data <data>        Binary hex data of message
  -c, --copy_to_clipboard  Whether copy parsed result to clipboard
  -h, --help               output usage information

example:

$ yarn parse -c  -d  232303fe4c53464430333230324a4330303136323701006b13020200210c81010002ff0300000423f5010002ff0300000423f3010002ff0300000423f3010002ff0300000423f3010002ff0300000423f3010002ff0300000423f6010002ff0300000423f5010002ff0300000423f5010002ff0300000423f3010002ff0300000423f30e

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Author

@36node/32960 © 36node, Released under the MIT License.

Authored and maintained by 36node with help from contributors (list).

github.com/zzswang · GitHub @36node

About

解析库,中国国家标准——电动汽车的通信协议及数据交换格式

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 98.3%
  • Shell 1.3%
  • Dockerfile 0.4%