August 2017
Intermediate to advanced
214 pages
4h 31m
English
If you are familiar with maintaining projects remotely with version control systems such as Git or SVN, then you can skip this section. Version control systems make it easier to keep track of changes and also push and pull new versions of code from a remote repository. If you haven't already, install Git from https://git-scm.com/ Create a project folder and create a new Git repository inside your project folder (use the Terminal application for Mac and Linux or the Git bash program on Windows). The project folder will look like the one we made on our Raspberry Pi:
mkdir sensor-projectmkdir sensor-project/hello-worldtouch sensor-project/hello-world/hello-world.jscd sensor-projectgit init
Add all your files ...
Read now
Unlock full access