|
|
|
|
|
by jcolella
2984 days ago
|
|
I always say pick the best language for the type of problem that you are trying to solve. If your problem is heavy IO, than I recommend NodeJS, as that's the forte.
Instead if the problem is a CPU-bound issue, then NodeJS is not appropriate. Within the NodeJS ecosystem, you can use Typescript, as well as use webpack to have an optimized build. There is always something to learn. |
|