Electron Angular2(angular-cli)需要内部模块失败

时间:2016-11-06 17:53:38

标签: angular typescript electron angular-cli

我在渲染器进程中不能要求内部模块。 当我想要内部节点模块甚至电子时,我得到一个错误或未定义或空对象。

例如:

import * as fs from 'fs';
console.log(fs) // empty object

import { spawn } from 'child_process'; // Can't find child_process module

import * as electron from 'electron' // fs.readFileSync is not a function

这是我的代码: 的电子

import { app, BrowserWindow } from 'electron';
let mainWin = null;
const loadURL = `http://localhost:4200`;
const createWindow = () => {
    mainWin = new BrowserWindow({
        width: 800,
        height: 800
    });
    mainWin.loadURL(loadURL);
    mainWin.on('closed', () => {
        mainWin = null;
    });
}
app.on('ready', createWindow);
app.on('activate', () => {
    if (!mainWin) {
        createWindow();
    }
});

渲染器处理角度代码:

import { Component } from '@angular/core';
import { readdirSync } from 'fs';
import { spawn } from 'child_process';
console.log(readdirSync);
@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.styl']
})
export class AppComponent {
  constructor() {}
}

我做错了什么?

1 个答案:

答案 0 :(得分:0)

您在Angular中包含用于浏览器的服务器端模块。

电子需要NodeJS,浏览器只能访问服务器所能访问的文件系统。

但Electron使用节点渲染index.html文件,因此您可以通过index.html文件

来获取电子

使用Angular应用程序中的Electron部分的示例。

<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>Angular App</title>
  <base href="./">

  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="icon" type="image/x-icon" href="favicon.ico">


</head>
<body>
  <app-root></app-root>


  <script>
    window.electron = require("electron");
    window.ipcRenderer = require("electron").ipcRenderer;
    window.electronRemote = require("electron").remote;
  </script>


</body>
</html>