filecat 1.0.6 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -4
- package/build/dist/665.bundle.js +1 -1
- package/build/dist/868.bundle.js.LICENSE.txt +2 -2
- package/build/dist/943.bundle.js +1 -1
- package/build/dist/977.bundle.js +1 -1
- package/build/dist/bundle.js +1 -1
- package/build/main.js +228 -1
- package/build/main.js.LICENSE.txt +423 -0
- package/package.json +39 -39
- package/shell/build.js +33 -1
- package/shell/config/prebuild-file-path.js +18 -0
- package/shell/config/webpack.docker.config.js +59 -0
- package/shell/config/webpack.npm.config.js +62 -0
- package/shell/config/webpack.pkg.config.js +59 -0
- package/shell/docker-build.sh +3 -0
- package/shell/config/webpack.server.config.js +0 -55
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
- 中文 | [English ](./doc/EN_README.md)
|
|
5
5
|
- 使用[filebrowser](https://github.com/filebrowser/filebrowser)好看的ui来浏览文件,同时具备服务器管理能力。
|
|
6
|
-
- 安装`npm install filecat -g`然后执行 `filecat`,添加参数`filecat --help
|
|
6
|
+
- 安装`npm install filecat -g`然后执行 `filecat`,添加参数`filecat --help`可以获取更多参数说明。也支持二进制方式直接运行,更多使用方式请参考下文。
|
|
7
7
|
## 截图
|
|
8
8
|

|
|
9
9
|
|
|
@@ -11,9 +11,10 @@
|
|
|
11
11
|
### 体验
|
|
12
12
|
url: http://116.198.245.137:5569/
|
|
13
13
|
账号密码: `admin`/`admin`暂时没有权限功能,请不要修改密码,影响别人体验
|
|
14
|
-
### npm
|
|
15
|
-
如果你的服务器上已经安装了node和npm,使用 `npm install filecat -g`全局安装,后然后使用`filecat`命令即可运行,或者`npm install filecat`安装到本项目下,使用`npx filecat `运行;
|
|
16
|
-
|
|
14
|
+
### npm 方式运行
|
|
15
|
+
- 如果你的服务器上已经安装了node和npm,使用 `npm install filecat -g`全局安装,后然后使用`filecat`命令即可运行,或者`npm install filecat`安装到本项目下,使用`npx filecat `运行;
|
|
16
|
+
- 如果网络比较差,可以使用淘宝镜像源`npm config set registry https://registry.npmmirror.com`。或者,安装的时候临时使用淘宝镜像源`npm install -g filecat --registry https://registry.npmmirror.com`。
|
|
17
|
+
### 二进制文件方式运行
|
|
17
18
|
最新的代码不会直接打包,如果要使用最新功能和bug修复请自己打个包。
|
|
18
19
|
下载[最新release](https://github.com/xiaobaidadada/filecat/releases)
|
|
19
20
|
然后使用各个平台的可执行程序运行(x64);
|