diff options
author | 2018-11-06 13:39:01 -0500 | |
---|---|---|
committer | 2018-11-06 13:39:01 -0500 | |
commit | b9b3b4b74e70cae099a6ccb0dd06427fdb5a2279 (patch) | |
tree | 70144dcfb7684b64f2c1fcb35dac538423a101d3 /dgbuilder/INSTALL.md | |
parent | 78b70b90a20d8e6cd7e9b1da62397aa78b09b7ed (diff) |
Remove obsolete dgbuilder
SDNC dgbuilder is no longer used - dgbuilder is now in CCSDK.
Change-Id: I496e346ed3864779f36c00c354742f7d36447399
Issue-ID: SDNC-488
Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
Former-commit-id: e38fe292bd511784d1c145e84a9af7d94b6f3669
Diffstat (limited to 'dgbuilder/INSTALL.md')
-rw-r--r-- | dgbuilder/INSTALL.md | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/dgbuilder/INSTALL.md b/dgbuilder/INSTALL.md deleted file mode 100644 index 90922e6f..00000000 --- a/dgbuilder/INSTALL.md +++ /dev/null @@ -1,57 +0,0 @@ -Node-RED Install -================ - -## Install node.js - -You can get the latest version from <http://nodejs.org/download/>. - -Or, you may want to use a version from your operating system's package manager: - <https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager> - -## Get Node-RED - -Clone the repository from GitHub: - - $ git clone git@github.com:node-red/node-red.git - -## Install the pre-requisite modules - -From the top-level directory of Node-RED, run: - - $ npm install - -This will install the core pre-requisite modules. - -## Run Node-RED - -From the top-level directory, run: - - $ node red.js - -You can then access Node-RED at <http://localhost:1880>. - -Online documentation is available at <http://nodered.org/docs>. - -## Installing individual node dependencies - -When Node-RED starts, it attempts to load the nodes from the `nodes/` directory. -Each will have its own set of dependencies that will need to be installed before -the node is available in the palette. - -To help identify the dependencies, Node-RED logs any modules it fails to find -for a particular node. You don't have to install these unless you want or need -that node to appear. - -Alternatively, a node's `.js` file can be examined to identify the modules it -explicitly requires. For example, the Twitter node is defined in -`nodes/social/27-twitter.js` and contains: - - var RED = require("../../red/red"); - var ntwitter = require('ntwitter'); - var OAuth= require('oauth').OAuth; - -Of these, `ntwitter` and `oauth` are neither built-in modules nor ones provided -by Node-RED itself. They can subsequently be installed by running: - - $ npm install ntwitter oauth - |