@tum-far/ubii-nodes
v0.1.6
Published
Hi. This is the repository for Ubii Nodes. It contains all server and client node implementations.
Downloads
14
Readme
ubii-nodes
Hi. This is the repository for Ubii Nodes. It contains all server and client node implementations.
This project is managed as Jira instance of the FAR group at the Technical Unitversity of Munich (TUM).
Table of Contents
Quick Start
You can start a simple masterNode
by running node .\scripts\serverSetups\simpleMasterNode.js
. Then enter a port number for the topicData server and the service server.
The default example projects are using ports
8492
and8493
.
Now you can start the example apps as described in their readmes.
CLIs
Scripts
You can run a node script (for exampe a script called scriptName
) within the script
folder by running node scripts/scriptName
.
Tests
- Run
npm test
for all standard test (no round trip time tests) - Run
npm run-script test-rtt
for all round trip time tests - See the Testing section for more details on tests.
Testing
- This module uses the AVA test runner.
- You can add new tests to the test folder. Entry point for the test runner is test.js within the test folder. See the AVA Documentation for more details on how to create new test cases for AVA.