如何使用Node.js在非常简单的JS文件中编辑对象

时间:2019-08-31 23:52:59

标签: javascript node.js webpack fs workbox

尽管此问题与Workbox和Webpack有关,但它不需要任何一个库的任何先验知识。

背景知识(如果不熟悉Workbox,则跳过此内容)

我目前正在使用Workbox 4.3.1(workbox-webpack-plugin)中的InjectManifest插件。该版本的库提供了一个名为manifestTransforms的选项,但不幸的是,转换未应用于Webpack编译中的资产(这是known issue)。

虽然在Workbox v5 +中已修复此问题,但由于构建过程中需要库包v3(Dynamic Importing in Laravel Mix)的另一个库,我无法升级

我之所以提到上述原因,是因为不幸的是,解决方案不是升级到Workbox v5 +。

问题

我有一个自动生成的文件,如下所示:

self.__precacheManifest = (self.__precacheManifest || []).concat([
    {
        "revision": "68cd3870a6400d76a16c",
        "url": "//css/app.css"
    },
    // etc...
]);

我需要以某种方式提取存储在self.__precacheManifest中的对象的内容,应用我自己的转换,然后将其保存回文件中。

我尝试过的事情...

据我所知:

// As the precached filename is hashed, we need to read the
// directory in order to find the filename. Assuming there
// are no other files called `precache-manifest`, we can assume
// it is the first value in the filtered array. There is no
// need to test if [0] has a value because if it doesn't
// this needs to throw an error
let manifest = fs
    .readdirSync(path.normalize(`${__dirname}/dist/js`))
    .filter(filename => filename.startsWith('precache-manifest'))[0];

require('./dist/js/' + manifest);

// This does not fire because of thrown error...
console.log(self.__precacheManifest);

这将引发以下错误:

  

我自己没有定义

我知道为什么会引发错误,但是我不知道如何解决此问题,因为我需要以某种方式读取文件的内容以提取对象。有人可以在这里给我建议吗?

请记住,一旦将转换应用于对象,则需要将更新的对象保存到文件中...

1 个答案:

答案 0 :(得分:2)

由于self指向window,并且window在node.js中不存在,因此需要一种解决方法。 应该起作用的一件事是在Node的全局范围内定义变量self,并让require语句填充变量的内容,如下所示:

global['self'] = {};
require('./dist/js/' + manifest);
console.log(self.__precacheManifest);

要将修改后的内容保存回文件中

const newPrecacheManifest = JSON.stringify(updatedArray);
fs.writeFileSync('./dist/js/' + manifest, `self.__precacheManifest = (self.__precacheManifest || []).concat(${newPrecachedManifes});`, 'utf8');