2

OS: Windows

I want to build an app for commercial usage which needs to call a library written in C. The only way (as far as I know) is writing a Node.js addon which needs Visual Studio Tools to build it. But the build tool is not free. Does it mean that I cannot use it for commercial usage?

What if using another package like https://github.com/node-ffi/node-ffi? It's MIT licensed but still built via Visual Studio Tool.

Mureinik
  • 5,112
  • 3
  • 31
  • 42
mingpepe
  • 123
  • 3

1 Answers1

2

As long as you aren't bundling VS Tools in your application, the fact that they aren't free is inconsequential. The built addon isn't a derived work of the toolchain, and you can distribute it under whatever license you see fit.

Mureinik
  • 5,112
  • 3
  • 31
  • 42