ExploreConsulting / netsuite-fasttrack-toolkit-ss2

NFT for SuiteScript 2.X
74 stars 20 forks source link

Does this module allow me to connect to Netsuite API via node.js? #12

Closed namelus closed 5 years ago

namelus commented 5 years ago

Trying to figure out if this module allows me to connect and run code from node.js, or just allows me to write code in node.js and then upload to NS Suitescript?

ShawnTalbert commented 5 years ago

No, this module is meant to make writing SuiteScript better, faster, stronger.

Where it overlaps with NodeJS is that is allows one to write unit tests for SuiteScript that run in NodeJS.

So, you can write and execute isolated unit tests of your SuiteScript code locally via NodeJS.

That is separate from writing/deploying SuiteScript itself which runs on the NetSuite platform.

If you are writing a Node app and want to talk to NetSuite SuiteTalk I suggest you utilize an existing SOAP library for node. Best of luck!