如何解压缩.asar文件? [英] How to unpack an .asar file?

查看:1206
本文介绍了如何解压缩.asar文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经使用以下命令打包了电子应用程序

asar pack app app.asar

现在,我需要将其解压缩并重新获得整个代码.反正有这样做吗?

解决方案

asar文档

(此处使用npx是为了避免与npm install -g asar一起全局安装asar工具)

提取整个档案:

npx asar extract app.asar destfolder 

提取特定文件:

npx asar extract-file app.asar main.js

I have packed my electron application using follwoing command

asar pack app app.asar

Now, I need to unpack it and get the whole code back. Is there anyway to do so?

解决方案

From the asar documentation

(the use of npx here is to avoid to install the asar tool globally with npm install -g asar)

Extract the whole archive:

npx asar extract app.asar destfolder 

Extract a particular file:

npx asar extract-file app.asar main.js

这篇关于如何解压缩.asar文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆