For anyone looking to experiment with third party nodes, if you end up getting No such file or directory
errors while compiling, change your
#include <path/file.h>
to
#include "path/file.h"
In the node file, as well as all sub-files, for the library you're trying to import.
I love C++