Javascriptservices: Question reactredux and Node.js

Created on 12 May 2017  路  1Comment  路  Source: aspnet/JavaScriptServices

I simply interesting in one question, because I don't really know how it works in result.
Expert thought needed.

If I use reactredux. And then I publish it to somewhere (for example local folder).
In published folder I have a lot of .dll files and some fat .js (I guess they made by webpack).

Theoretically I guess in this case I will # need not any Node.js at production server where I gonna deploy this stuff. Is that true ?

Most helpful comment

If you're not doing server-side prerendering, then you will not need Node.js on your production server, because all the JS will be executed on the client side.

If you are doing server-side prerendering (which is the default in the React-Redux template in this repo), then you do need Node.js on your production server, because the prerendering process involves executing your JavaScript code on the server.

>All comments

If you're not doing server-side prerendering, then you will not need Node.js on your production server, because all the JS will be executed on the client side.

If you are doing server-side prerendering (which is the default in the React-Redux template in this repo), then you do need Node.js on your production server, because the prerendering process involves executing your JavaScript code on the server.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

asadsahi picture asadsahi  路  3Comments

Eilon picture Eilon  路  3Comments

LovedByTheLord picture LovedByTheLord  路  3Comments

natemcmaster picture natemcmaster  路  4Comments

ZeekoZhu picture ZeekoZhu  路  3Comments