728x90
반응형
Node-RED 진짜 설치
https://nodered.org/docs/getting-started/installation
For Development - from GitHub
Running the code from GitHub is only intended for users who are happy to be using development code, or for developers wanting to contribute to the code.
You can clone the source repository directly from GitHub:
git clone https://github.com/node-red/node-red.git
Once cloned, the core pre-requisite modules must be installed :
cd node-red
npm install - 여기 아주 중요
Note : when running from a clone of the git repository, it is necessary to install all dependencies, not just the production level ones. This is why the
--production
option should not be used.You will also need to install grunt-cli
in order to build the application before you can use it. This must be done globally.
sudo npm install -g grunt-cli
You can then build and run the application
grunt build
node red
추가로
npm i node-red-node-serialport
npm i node-red-node-arduino
npm install arduino-firmata
참고로 파이썬도 설치되어 있고
Visual Studio 2013을 사용하고 있습니다.
반응형