Skip to content

Commit 88e1acf

Browse files
committed
Initial commit
0 parents  commit 88e1acf

11 files changed

+638
-0
lines changed

.editorconfig

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_size = 2
8+
indent_style = space
9+
insert_final_newline = true
10+
max_line_length = 140
11+
trim_trailing_whitespace = true
12+
13+
[*.md]
14+
max_line_length = 0
15+
trim_trailing_whitespace = false

.gitignore

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
.DS_Store
2+
node_modules
3+
4+
# build dist
5+
.nyc_output
6+
*.log
7+
/dist/
8+
/cjs/
9+
/esm/
10+
/release/
11+
/debug/
12+
/coverage/
13+
/docs/
14+
/tmp
15+
/cache
16+
/logs
17+
18+
# manager
19+
npm-debug.log
20+
package-lock.json
21+
yarn.lock
22+
yarn-error.log
23+
pnpm-lock.yaml
24+
.pnpm-debug.log
25+
26+
# config
27+
# .flh.config.js
28+
/env-config.sh
29+
/w2.x-scripts.config.js
30+
/w2.x-scripts.cache.json
31+
/test-*
32+
/local-x-scripts-rules

.prettierrc

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"printWidth": 140,
3+
"singleQuote": true,
4+
"trailingComma": "es5",
5+
"proseWrap": "preserve",
6+
"semi": true,
7+
"bracketSpacing": true,
8+
"arrowParens": "avoid",
9+
"overrides": [
10+
{
11+
"files": ".prettierrc",
12+
"options": {
13+
"parser": "json"
14+
}
15+
}
16+
]
17+
}

README.md

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
@lzwme/x-scripts-rules
2+
========
3+
4+
[![node version][node-badge]][node-url]
5+
[![GitHub issues][issues-badge]][issues-url]
6+
[![GitHub forks][forks-badge]][forks-url]
7+
[![GitHub stars][stars-badge]][stars-url]
8+
![license MIT](https://img.shields.io/github/license/lzwme/whistle.x-scripts)
9+
<!-- [![minzipped size][bundlephobia-badge]][bundlephobia-url] -->
10+
11+
基于 [@lzwme/whistle.x-scripts](https://github.com/lzwme/whistle.x-scripts) 插件规范开发的规则脚本库。
12+
13+
## 快速开始
14+
15+
```bash
16+
npm i -g whistle @lzwme/whistle.x-scripts
17+
git clone https://mirror.ghporxy.com/github.com/lzwme/x-scripts-rules.git
18+
w2 ca
19+
w2 proxy
20+
w2 run
21+
```
22+
23+
## 安装与使用
24+
25+
请先了解 [@lzwme/whistle.x-scripts](https://github.com/lzwme/whistle.x-scripts) 项目的功能,并进行基本安装与配置。
26+
27+
应先全局安装 `whistle``@lzwme/whistle.x-scripts`
28+
29+
```bash
30+
npm i -g whistle @lzwme/whistle.x-scripts
31+
```
32+
33+
然后拉取本仓库代码到本地路径(如:`/Users/lzwme/coding/x-scripts-rules`):
34+
35+
```bash
36+
git clone https://github.com/lzwme/x-scripts-rules.git
37+
```
38+
39+
接着在配置文件 `~/w2.x-scripts.config.js` 中的 `ruleDirs` 字段添加该仓库所在路径即可。示例:
40+
41+
```js
42+
module.exports = {
43+
ruleDirs: [
44+
'/Users/lzwme/coding/x-scripts-rules/', // 按目录:加载全部规则
45+
'/Users/lzwme/coding/x-scripts-rules/src/jd.js', // 按文件:加载部分规则
46+
],
47+
};
48+
```
49+
50+
最后启动 `whistle`
51+
52+
```bash
53+
# 安装根证书
54+
w2 ca
55+
# 开启全局代理模式(关闭: w2 proxy off)
56+
w2 proxy
57+
# 调试模式启动
58+
w2 run
59+
```
60+
61+
## 免责说明
62+
63+
- 本项目仅用于个人对 web 程序逆向的兴趣研究学习,请勿用于商业用途、任何恶意目的,否则后果自负。请在学习研究完毕24小时内删除。
64+
- 请自行评估使用本项目脚本可能产生的安全风险。本人对使用本项目涉及的任何脚本引发的问题概不负责,包括但不限于由脚本错误引起的任何损失或损害。
65+
66+
## License
67+
68+
`@lzwme/x-scripts-rules` is released under the MIT license.
69+
70+
该插件由[志文工作室](https://lzw.me)开发和维护。
71+
72+
73+
[stars-badge]: https://img.shields.io/github/stars/lzwme/whistle.x-scripts.svg
74+
[stars-url]: https://github.com/lzwme/whistle.x-scripts/stargazers
75+
[forks-badge]: https://img.shields.io/github/forks/lzwme/whistle.x-scripts.svg
76+
[forks-url]: https://github.com/lzwme/whistle.x-scripts/network
77+
[issues-badge]: https://img.shields.io/github/issues/lzwme/whistle.x-scripts.svg
78+
[issues-url]: https://github.com/lzwme/whistle.x-scripts/issues
79+
[npm-badge]: https://img.shields.io/npm/v/@lzwme/x-scripts-rules.svg?style=flat-square
80+
[npm-url]: https://npmjs.org/package/@lzwme/x-scripts-rules
81+
[node-badge]: https://img.shields.io/badge/node.js-%3E=_16.15.0-green.svg?style=flat-square
82+
[node-url]: https://nodejs.org/download/
83+
[download-badge]: https://img.shields.io/npm/dm/@lzwme/x-scripts-rules.svg?style=flat-square
84+
[download-url]: https://npmjs.org/package/@lzwme/x-scripts-rules
85+
[bundlephobia-url]: https://bundlephobia.com/result?p=@lzwme/x-scripts-rules@latest
86+
[bundlephobia-badge]: https://badgen.net/bundlephobia/minzip/@lzwme/x-scripts-rules@latest

package.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "x-scripts-rules",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"keywords": [],
10+
"author": "",
11+
"license": "ISC",
12+
"devDependencies": {
13+
"@lzwme/whistle.x-scripts": "^0.0.1"
14+
}
15+
}

0 commit comments

Comments
 (0)