我正在使用https://github.com/parro-it/electron-parcel-example将 Parcel 与 Electron 一起使用。
我的项目是https://github.com/patrykkalinowski/dcs-frontlines-electron
我有renderer.js正确的包裹服务的基本设置:
渲染器.js:
// This file is required by the index.html file and will
// be executed in the renderer process for that window.
// All of the Node.js APIs are available in this process.
require('./app/map')
app/map.js:(省略不相关的代码)
module.exports = {
addFeature: function(coords) {
unitsSource.addFeature(new Feature(new Circle(coords, 1e6)))
}
}
import { Buffer } from "buffer"; // needed after 'fs' is being transpiled
const fs = require ('fs');
import Map from 'ol/Map.js';
import View from 'ol/View.js';
import Feature from 'ol/Feature.js';
import GeoJSON from 'ol/format/GeoJSON.js';
import Circle from 'ol/geom/Circle.js'
import {Tile as TileLayer, Vector as VectorLayer} from 'ol/layer.js';
import {OSM, Vector as VectorSource} from 'ol/source.js';
import {Circle as CircleStyle, Fill, Stroke, Style, Text} from 'ol/style.js';
到目前为止一切顺利,它有效。尝试将另一个文件添加到混合中时会出现问题:
应用程序/dcs.js:
const mgrs = require('mgrs')
const map = require('./map')
module.exports = {
receiveData: function(data) {
data = JSON.parse(data)
keys = Object.keys(data)
for (key of keys) {
var mgrs_string = data[key].mgrs_position.UTMZone + data[key].mgrs_position.MGRSDigraph + data[key].mgrs_position.Easting + data[key].mgrs_position.Northing
var coords = mgrs.toPoint(mgrs_string)
map.addFeature(coords)
}
}
}
map.addFeature([0,0]) // testing
npm start结果:
App threw an error during load
/Users/patryk/Code/dcs-frontlines-electron/app/map.js:7
import { Buffer } from "buffer"; // needed after 'fs' is being transpiled
^
SyntaxError: Unexpected token {
at Module._compile (internal/modules/cjs/loader.js:752:23)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:827:10)
at Module.load (internal/modules/cjs/loader.js:677:32)
at tryModuleLoad (internal/modules/cjs/loader.js:609:12)
at Function.Module._load (internal/modules/cjs/loader.js:601:3)
at Module.require (internal/modules/cjs/loader.js:715:19)
at require (internal/modules/cjs/helpers.js:14:16)
at Object.<anonymous> (/Users/patryk/Code/dcs-frontlines-electron/app/dcs.js:2:13)
at Module._compile (internal/modules/cjs/loader.js:815:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:827:10)
此错误是由文件require('./map')中dcs.js(第 2 行)引起的
我认为我需要告诉 Parceldcs.js在构建中包含文件,但是该怎么做呢?
这是我在main.js 中的包裹代码:
// Parcel bundler
function runParcel() {
return new Promise(resolve => {
let output = "";
const parcelProcess = execa("parcel", ["index.html"]);
const concat = chunk => {
output += chunk;
console.log(output);
if (output.includes("Built in ")) {
parcelProcess.stdout.removeListener("data", concat);
console.log(output);
resolve();
}
};
parcelProcess.stdout.on("data", concat);
});
}