fix: install命令替代build命令用于自动编译; 引用优化

This commit is contained in:
rnet 2024-03-30 22:11:27 +08:00
parent f9ec8221cb
commit 49a4a2bb45
6 changed files with 27 additions and 13 deletions

View File

@ -2,3 +2,6 @@
!bin/
!browser/
!utils/
!binding.gyp
!README.md
!CHANGELOG.md

View File

@ -1,12 +1,16 @@
<h1 align="center">
<img width="100" height="100" src="logo.png" alt=""><br>
<img width="100" height="100" src="https://github.com/pysunday/sdenv/blob/main/logo.png" alt=""><br>
sdenv
</h1>
[![NPM version](https://badge.fury.io/js/sdenv.svg)](http://badge.fury.io/js/sdenv)
sdenv是一个javascript运行时补环境框架与github上其它补环境框架存在较大区别sdenv是站在巨人的肩膀上实现的依赖于jsdom的强大dom仿真能力sdenv可以真实模拟浏览器执行环境作者在固定随机数与添加[sdenv-extend](https://github.com/pysunday/sdenv-extend)的部分插件后可以达到**瑞数vmp代码在sdenv运行生成的cookie值与浏览器生成的cookie值一致**。
* sdenv专用jsdom版本[sdenv-jsdom](https://github.com/pysunday/sdenv-jsdom)
* sdenv多端环境提取[sdenv-extend](https://github.com/pysunday/sdenv-extend)
* 对瑞数算法逆向可参考项目:[rs-reverse](https://github.com/pysunday/rs-reverse)
## 依赖
@ -14,24 +18,29 @@ sdenv是一个javascript运行时补环境框架与github上其它补环境
编译node插件用的是[node-gyp](https://github.com/nodejs/node-gyp)工具该工具需要有python环境和c环境(如windows系统需安装Visual Studio),请根据工具文档进行系统环境搭建。
## 可能出现的问题
1. node-gyp报错请确保操作系统有c++编译环境与python环境
2. 安装缓慢及canvas报错由于canvas安装会优先从github获取现成的包因此请在安装前先设置代理或者其它国内源如果安装仍然失败请使用npm官方源+代理方式重新尝试;
有其它问题请提issues
## 使用
### 源码方式
1. clone项目`git clone https://github.com/pysunday/sdenv.git`
2. 安装依赖:`cd sdenv && npm i`
3. 执行编译unix运行`npm run build`windows运行`npm run build:win`
4. 运行样例:
3. 运行样例:
* [运行本地代码](https://github.com/pysunday/sdenv/blob/main/example/use-local/README.md)`node example/use-local/index.js`
* [运行网站代码](https://github.com/pysunday/sdenv/blob/main/example/use-remote/README.md)`node example/use-remote/index.js`
![样例调用](./static/example.png)
![样例调用](https://github.com/pysunday/sdenv/blob/main/static/example.png)
### npm包方式
1. 安装npm包`npm i sdenv`
2. 进入文件夹`node-modules/sdenv`执行编译unix运行`npm run build`windows运行`npm run build:win`
3. 导入包方法:
2. 导入包方法:
```javascript
const browser = require('sdenv/browser/');
const { jsdomFromText, jsdomFromUrl } = require('sdenv/utils/jsdom');
@ -125,6 +134,7 @@ sdenv-extend初始化只执行一次初始化成功后生成的环境对象
sdenv-extend具体功能可参考项目内[README文档](https://github.com/pysunday/sdenv-extend/blob/main/README.md)。
## 声明
该项目的开发基于瑞数vmp网站不能保证在其它反爬虫产品稳定使用出现问题请及时提issues或者提pull参与共建!

View File

@ -1,4 +1,4 @@
const getDocumentAll = require('@bin/documentAll').getDocumentAll;
const getDocumentAll = require('@/build/Release/documentAll').getDocumentAll;
const sdenv = require('sdenv-extend').sdenv();
const window = sdenv.memory.sdWindow;

View File

@ -1,4 +1,6 @@
require('module-alias/register');
const path = require('path');
const paths = require('../utils/paths');
require('module-alias')(path.dirname(paths.package));
// const jsdomDevtoolsFormatter = require('jsdom-devtools-formatter');
// jsdomDevtoolsFormatter.install();
const SdenvExtend = require('sdenv-extend');

View File

@ -1,7 +1,7 @@
{
"name": "sdenv",
"version": "0.1.2",
"description": "",
"version": "0.1.8",
"description": "补环境框架",
"main": "main.js",
"directories": {
"test": "test"
@ -9,8 +9,7 @@
"scripts": {
"test": "jest ./test/",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand ./test/",
"build": "node-gyp rebuild && cp build/Release/documentAll.node ./bin/",
"build:win": "node-gyp rebuild && copy .\\build\\Release\\documentAll.node .\\bin\\",
"install": "node-gyp rebuild",
"release": "release-it"
},
"logLevel": "debug",

View File

@ -1,4 +1,4 @@
const getDocumentAll = require('../bin/documentAll.node').getDocumentAll;
const getDocumentAll = require('../build/Release/documentAll.node').getDocumentAll;
describe('模拟document.all检测', () => {
const da = getDocumentAll({ length: 1 });