Query: Single Page Application Development in NetS...
# general
v
Query: Single Page Application Development in NetSuite We’ve been working on a Single Page Application (SPA) using NetSuite’s SPA architecture, but ran into a challenge: there doesn’t seem to be a supported way to run an SPA project locally. This makes collaborative development inefficient, as every change requires deployment to the NetSuite environment to test or view it. Is there a way to run/test SPA projects locally? Similar to how we can run/test SuiteCommerce Extensions/Themes on a local server? If local development isn’t supported, what’s the recommended approach for multiple developers to collaborate effectively on a single SPA? Thanks in advance for your help!
c
There's no locally available instance of netsuite so developing locally is probably not going to be possible. You can develop the UI in the UIF sandbox if you need to but if you require the data, you have to deploy it to netsuite. If you have multiple developers, you are probably going to need multiple versions of the SPA app per developer -or- multiple dev instances so that you can deploy it to the account and test it out without causing issues with other devs. I do agree that it seems to be inefficient.
v
Thanks for the detailed response @creece .