commit | 9d242b135738db929e757d519c12cb4df1186e95 | [log] [tgz] |
---|---|---|
author | sb98052 <gwsapan@gmail.com> | Tue Sep 13 20:47:26 2016 +0200 |
committer | Peter K. Lee <peter@corenova.com> | Tue Sep 13 11:47:26 2016 -0700 |
tree | d2098ea27c2b42c5ea4eaebcbf1620ece33ee74d | |
parent | 0db45ac068a98bdfb9d8aa1f6d40b04b90516ae7 [diff] |
Added slice to xos-core along with django-specific types (#7)
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.8 start /home/plee/hack/yang-cord > node lib/api/server.js [yang-express] start of a new journey [openapi] enabling... [openapi] enabled ok [restjson] enabling... [restjson] enabled ok [websocket] enabling... [yang-express] registering a new link [yang-express] registered 'link:cord-core' [yang-express] registering a new link [yang-express] registered 'link:xos-core' [websocket] binding to server [websocket] enabled ok
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...