https://github.com/telligro/opal-node-red
A fork of the node-red project with changes needed for the OPAL framework
https://github.com/telligro/opal-node-red
automation node-red opal opal-framework opal-node-red process-automation
Last synced: 4 days ago
JSON representation
A fork of the node-red project with changes needed for the OPAL framework
- Host: GitHub
- URL: https://github.com/telligro/opal-node-red
- Owner: telligro
- License: gpl-3.0
- Created: 2018-01-04T04:35:57.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-04T11:03:46.000Z (about 7 years ago)
- Last Synced: 2023-09-20T03:41:19.005Z (over 1 year ago)
- Topics: automation, node-red, opal, opal-framework, opal-node-red, process-automation
- Language: JavaScript
- Homepage: https://www.telligro.com
- Size: 2.25 MB
- Stars: 2
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# OPAL Node-RED
[](https://travis-ci.org/telligro/opal-node-red) [](https://www.npmjs.com/package/opal-node-red) [](LICENSE)
## Getting started
This readme is for setting up the development environment.
Refer to [opal-setup](https://github.com/telligro/opal-setup) project for getting started instructions.## Development setup
### Requirements
**node**: v8.9.x LTS
**npm**: 5.x
**Git**: 1.8+**Notes**:
The current release requires Git to be available on your environment path. Please refer to the Git Setup section.
The development should be fine with nodejs versions 6,9 as well. Although, this is not actively tested.
#### Git SetupFor instructions on setting up git on (Windows/Linux/Mac OSX) refer to link below
[Installing Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)On Windows, you can use a portable version of git available from
https://git-scm.com/download/win
If portable git used ensure that git.exe is available on your path.### Setup opal-node-red
* Create a working directory for OPAL node-red & nodes
```sh
mkdir
```
* Execute the below from the working directory
```sh
cd
git clone https://github.com/telligro/opal-node-red.git
cd opal-node-red
npm install
npm run build
# Install any required OPAL nodes as shown in the setup
# OPAL nodes section before starting the node-red instance
npm run start
```
### Setup OPAL nodes
```sh
cd
git clone https://github.com/telligro/opal-nodes.git
```
#### Install the nodes
##### Generic Node Installation
```sh
cd /opal-nodes/packages/
npm link
```
* Assuming that the `opal-node-red` in the same working directory as `opal-nodes`
```sh
cd /opal-node-red
npm link
```
The following nodes are available for OPAL
* [opal-node-control-flow](https://github.com/telligro/opal-nodes/tree/master/packages/opal-node-control-flow)
* [opal-node-database](https://github.com/telligro/opal-nodes/tree/master/packages/opal-node-database)
* [opal-node-email](https://github.com/telligro/opal-nodes/tree/master/packages/opal-node-email)
* [opal-node-ftp](https://github.com/telligro/opal-nodes/tree/master/packages/opal-node-ftp)
* [opal-node-msexcel](https://github.com/telligro/opal-nodes/tree/master/packages/opal-node-msexcel)
* [opal-node-selenium-webdriver](https://github.com/telligro/opal-nodes/tree/master/packages/opal-node-control-flow)
* [opal-node-soap](https://github.com/telligro/opal-nodes/tree/master/packages/opal-node-control-flow)
* [opal-node-pdfreader](https://github.com/telligro/opal-nodes/tree/master/packages/opal-node-pdfreader)
## Contributing
Contact [email protected]
## AuthorsOPAL-Node-RED is a fork of Node-RED for the [OPAL Framework](https://www.telligro.com)
The OPAL Node-RED fork is maintained by [Telligro Pte Ltd](https://www.telligro.com)
The OPAL Nodes are created and mantained by [Telligro Pte Ltd](https://www.telligro.com)Node-RED is a project of the [JS Foundation](http://js.foundation).
It was created by [IBM Emerging Technology](https://www.ibm.com/blogs/emerging-technology/).
* Nick O'Leary [@knolleary](http://twitter.com/knolleary)
* Dave Conway-Jones [@ceejay](http://twitter.com/ceejay)For more details about Node-RED visit [Node_RED](https://www.nodered.org)
## Copyright and license
Copyright Telligro Pte Ltd 2017, licensed under [the GPL v3 license](LICENSE).
Copyright JS Foundation and other contributors, http://js.foundation under [the Apache 2.0 license](APACHEv2-LICENSE).