我和谁一起工作 next.js 客户端和 node.js 表达服务器端
Who do I work with next.js for client side and express in node.js for server side
我现在已经学会了使用 nodejs。但现在我想了解更多关于制作更好网站的知识。于是我找到了next.js,那我就基本学会了。但是我不明白我是怎么和他们一起工作的。
所以我的问题是,如何让 node.js 服务器端和 next.js 客户端?
如果你有任何其他的东西要学或告诉我,请告诉我所有我需要知道的。
你可能误解了 next.js 是什么。
NodeJS 用于创建处理 HTTP 请求的后端应用程序,more information about backend
React is a JS library to create Frontend Application which is served by a server. But a React App is a really heavy js file and is really slow to be served, then in order to improve the performances you have to pre-render the html in the server and then send the pre-rendered web page to the client. More about SSR vs CSR
Next.JS是一个开发SSR React App的框架
我现在已经学会了使用 nodejs。但现在我想了解更多关于制作更好网站的知识。于是我找到了next.js,那我就基本学会了。但是我不明白我是怎么和他们一起工作的。
所以我的问题是,如何让 node.js 服务器端和 next.js 客户端?
如果你有任何其他的东西要学或告诉我,请告诉我所有我需要知道的。
你可能误解了 next.js 是什么。
NodeJS 用于创建处理 HTTP 请求的后端应用程序,more information about backend
React is a JS library to create Frontend Application which is served by a server. But a React App is a really heavy js file and is really slow to be served, then in order to improve the performances you have to pre-render the html in the server and then send the pre-rendered web page to the client. More about SSR vs CSR
Next.JS是一个开发SSR React App的框架