I want to build a lot of Vue.js components in parallel. At the moment I call npx vue-cli-service build ...
several times, but each time a new instance of Node.js is started, this uses a lot of memory. Is it also possible with a single instance?
Asked
Active
Viewed 90 times
0

Andreas
- 430
- 5
- 21
-
Not really since node is single threaded. You’ll also have to do some convoluted modifications to vue-culi-service – suv May 29 '19 at 06:50
-
I thought there might be an implementation for npx, because there is something like that in the direction of npm. https://www.npmjs.com/package/concurrently – Andreas May 29 '19 at 07:00