Angular 和 Express - 文件结构
Angular and Express - File structure
我已经阅读了很多关于angular和express的正确结构的文章和post。
我只想知道,我应该使用与 angular/express 相同的 node_modules 文件夹,还是应该将它们分开?
我的结构是这样的:
申请
-- 这里我有前端(angular)
服务器
-- 这里我有服务器文件(express)
node_modules(我应该放在这里,还是放在每个文件夹里?)
客户端和服务器应该是单独的项目,具有单独的 package.json 文件和单独的 node_modules。在此处查看客户端和服务器项目:
https://github.com/Farata/angulartypescript/tree/master/code-samples/Angular8/chapter13/ng-auction
检查客户端目录 package.json 中的脚本部分。如果您在客户端目录中 运行 命令 npm run build
,则 angular 应用程序将部署在服务器上。
我已经阅读了很多关于angular和express的正确结构的文章和post。 我只想知道,我应该使用与 angular/express 相同的 node_modules 文件夹,还是应该将它们分开?
我的结构是这样的:
申请
-- 这里我有前端(angular)
服务器
-- 这里我有服务器文件(express)
node_modules(我应该放在这里,还是放在每个文件夹里?)
客户端和服务器应该是单独的项目,具有单独的 package.json 文件和单独的 node_modules。在此处查看客户端和服务器项目: https://github.com/Farata/angulartypescript/tree/master/code-samples/Angular8/chapter13/ng-auction
检查客户端目录 package.json 中的脚本部分。如果您在客户端目录中 运行 命令 npm run build
,则 angular 应用程序将部署在服务器上。