【问题标题】:Error: ENOENT: no such file or directory, open 'dist/index.html'错误:ENOENT:没有这样的文件或目录,打开“dist/index.html”
【发布时间】:2020-09-14 17:33:47
【问题描述】:

所以,我几天来一直在尝试运行一个有角度的通用应用程序,但是当我尝试像这样运行服务器时,我一直遇到这个问题

npm run dev:ssr

我已经按照以下链接设置了我的 server.ts 文件 https://github.com/Angular-RU/angular-universal-starter/blob/master/server.ts

我的 server.ts 文件如下

import 'zone.js/dist/zone-node';

import { ngExpressEngine } from '@nguniversal/express-engine';
import * as express from 'express';
import { join } from 'path';

import { AppServerModule } from './src/main.server';
import { APP_BASE_HREF } from '@angular/common';
import { existsSync } from 'fs';

// ssr DOM
const domino = require('domino');
const fs = require('fs');
const path = require('path');
// index from browser build!
const template = fs.readFileSync(path.join('.', 'dist', 'index.html')).toString();
// for mock global window by domino
const win = domino.createWindow(template);
// from server build
const files = fs.readdirSync(`${process.cwd()}/dist-server`);
// mock
global['window'] = win;
// not implemented property and functions
Object.defineProperty(win.document.body.style, 'transform', {
  value: () => {
    return {
      enumerable: true,
      configurable: true,
    };
  },
});
// mock documnet
global['document'] = win.document;
// othres mock
global['CSS'] = null;
// global['XMLHttpRequest'] = require('xmlhttprequest').XMLHttpRequest;
global['Prism'] = null;

// The Express app is exported so that it can be used by serverless Functions.
export function app() {
  const server = express();
  const distFolder = join(process.cwd(), 'dist');
  const indexHtml = existsSync(join(distFolder, 'index.original.html')) ? 'index.original.html' : 'index';

  // Our Universal express-engine (found @ https://github.com/angular/universal/tree/master/modules/express-engine)
  server.engine('html', ngExpressEngine({
    bootstrap: AppServerModule,
  }));

  server.set('view engine', 'html');
  server.set('views', distFolder);

  // Example Express Rest API endpoints
  // server.get('/api/**', (req, res) => { });
  // Serve static files from /browser
  server.get('*.*', express.static(distFolder, {
    maxAge: '1y'
  }));

  // All regular routes use the Universal engine
  server.get('*', (req, res) => {
    res.render(indexHtml, { req, providers: [{ provide: APP_BASE_HREF, useValue: req.baseUrl }] });
  });

  return server;
}

function run() {
  const port = process.env.PORT || 4000;

  // Start up the Node server
  const server = app();
  server.listen(port, () => {
    console.log(`Node Express server listening on http://localhost:${port}`);
  });
}

// Webpack will replace 'require' with '__webpack_require__'
// '__non_webpack_require__' is a proxy to Node 'require'
// The below code is to ensure that the server is run only when not requiring the bundle.
declare const __non_webpack_require__: NodeRequire;
const mainModule = __non_webpack_require__.main;
const moduleFilename = mainModule && mainModule.filename || '';
if (moduleFilename === __filename || moduleFilename.includes('iisnode')) {
  run();
}

export * from './src/main.server';

我的 app.server.module.ts 文件:

import { NgModule } from '@angular/core';
import { ServerModule } from '@angular/platform-server';

import { AppModule } from './app.module';
import { AppComponent } from './app.component';

@NgModule({
  imports: [
    AppModule,
    ServerModule,
  ],
  bootstrap: [AppComponent],
})
export class AppServerModule {}

我正在使用 Angular 9,并且正在考虑完全放弃使用 Angular Universal 的想法。目前看来它太不稳定了,无法使用。

dist 文件夹内容:

这里有人有解决办法吗?

【问题讨论】:

  • 你之前做过构建吗?并请显示 dist 文件夹的内容
  • @David - 是的,在那之前我做了一个 npm run build:ssr 。我已经用 dist 文件夹的内容更新了问题

标签: node.js angular angular-universal


【解决方案1】:

您错误地设置了distFolder 变量。来自server.tsdistFolder 必须指向包含客户端应用程序的文件,即您的应用程序中的dist\YourProjectName\browser。请注意,这是在angular.json 文件中配置的。

要纠正您的错误,请尝试更改 server.ts 中的 distFolder 路径

const distFolder = join(process.cwd(), 'dist','YourProjectName',  'browser');

【讨论】:

  • 你的意思是我应该在这里改变它 const template = fs.readFileSync(path.join('.', 'dist', 'index.html')).toString(); ?
  • 我没有看到你把截图的一部分涂黑了!答案已编辑。如果它仍然不起作用,你可以在变量赋值后做一个console.log(indexHtml) 吗?
  • 看起来有效。但是我现在收到一个新错误错误:ENOENT:没有这样的文件或目录,scandir '/Users/mukeshsingh/Documents/My Websites/WokeCode2/WokeCode-SPA/dist-server'
  • 很抱歉,这又是一个错误的目录问题。该应用程序终于启动并运行。非常感谢伙计。你保存了它。对于其他:我不得不改变这个: const files = fs.readdirSync(${process.cwd()}/dist/{MyProjectName}-SPA/server);
  • 很高兴能帮上忙!
猜你喜欢
  • 2021-04-09
  • 2019-05-08
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2018-07-06
  • 1970-01-01
  • 2019-01-26
  • 2021-06-08
相关资源
最近更新 更多