commit | 0f24ea931c015334f31bd2af009bceede2d953f8 | [log] [tgz] |
---|---|---|
author | Peter K. Lee <peter@intercloud.net> | Fri Aug 05 19:21:42 2016 -0700 |
committer | Peter K. Lee <peter@intercloud.net> | Fri Aug 05 19:21:42 2016 -0700 |
tree | e86a00606e5f39c69065c55cdf844d1c630e02ac | |
parent | 25d2aa691f1ded83bb5462bcbfc1cfe92158fe2e [diff] |
update to latest yang-express with OPTIONS, update API doc to explain usage
This is a work-in-progress effort to create YANG data models for the CORD project and deliver flexible service compositions.
You may contact Larry Peterson llp@onlab.us and Peter Lee peter@corenova.com to learn more about this initiative and find out how you can help.
$ npm install yang-cord
Following the installation, you can start an instance of the YANG model-driven REST API web server. It utilizes yang-express middleware framework built on Express.js to provide dynamic YANG model-driven API routing capability.
$ npm start > yang-cord@1.0.1 start /home/peter/yang-cord > node lib/server.js mounted 'cord-core' model mounted 'xos-core' model [cord-core] calling GET on /cord-core:subscriber
An option --port
is provided to specify the port to listen on, it can be used with:
npm start -- --port 3000
To run the test suite, first install the dependencies, then run npm test
.
$ npm install $ npm test
Mocha test suite is currently under development...