nodecpp
v0.0.6
Published
compile, run and watch main.ccp
Maintainers
Readme
nodecpp
This wil compile and run main.cpp on a filechange from main.cpp
It will run:
g++ main.cpp -o main
./maininstall
npm i . -gor with npm
npm i nodecpp -grun
You need to have a file main.cpp in the directory
#include <iostream>
int main() {
std::cout << "Hallo, nodecpp" << std::endl;
return 0;
}than run
nodecppif you want to run other files
nodecpp otherThats it. For now it will not watch other files
