标签:内容 nbsp 标准 http 插件 ejs data 基于 ons
makeself 是一个unix 自解压应用制作工具,100% shell,以下是一个简单的试用
因为基于shell,没有依赖,所以使用就比较简单了,clone 代码就可以了
git clone https://github.com/megastep/makeself.git
makeself.sh [args] archive_dir file_name label startup_script [script_args]
关于参数说明的可以参考官方文档 <a href="https://makeself.io/">https://makeself.io/</a>
├── index.js
├── package.json
├── post-install.sh
└── yarn.lock
{
"name": "appdemo",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node index.js"
},
"dependencies": {
"shortid": "^2.2.15"
}
}
index.js 一个简单的console 输出
const shortid = require("shortid")
console.log(`shortid is ${shortid.generate()}`)
post-install.sh 自解压包启动命令(注意需要添加执行权限)
#!/bin/sh
yarn
rm -rf post-install.sh
./makeself.sh --notemp ../appdemo node-app.run "node demo application" ./post-install.sh
基于makeself 制作软件包还是一个不错的工具的,使用简单,方便,同时也有一个maven 的插件makeself-maven-plugin
对于java 应用的
打包还是很不错的
https://github.com/hazendaz/makeself-maven-plugin
https://github.com/megastep/makeself
https://makeself.io/
标签:内容 nbsp 标准 http 插件 ejs data 基于 ons
原文地址:https://www.cnblogs.com/rongfengliang/p/12234770.html