commit | 83e3d0f4cf6d47c99da0c805dfdda7b997a75207 | [log] [tgz] |
---|---|---|
author | Peter K. Lee <peter@intercloud.net> | Fri Aug 19 00:11:05 2016 -0700 |
committer | Peter K. Lee <peter@intercloud.net> | Fri Aug 19 00:11:05 2016 -0700 |
tree | 3eb2082c1948e07f9fa019781cbd70f775709880 | |
parent | 1a856a05bbebca373ad94dc92f9298751708a99a [diff] | |
parent | 191d76081b0466e13a9c85e85a3dcfcc87d3bd9a [diff] |
upgrade to latest yang-js/yang-express
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...