2 Star 6 Fork 3

wx-rdc/tai-spider

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 660 Bytes
一键复制 编辑 原始数据 按行查看 历史
Edward.Zhu 提交于 2022-07-31 12:32 . finish #I5JRB4
const path = require('path');
const fs = require('fs');
const localSrc = path.join(__dirname, 'src');
var libPath = path.join(__dirname, 'lib');
// console.log('FORCE_LIB: ', process.env.FORCE_LIB || false);
if (!process.env.FORCE_LIB && fs.existsSync(localSrc)) {
libPath = localSrc;
}
exports = module.exports = {
TaiSpider: require(path.join(libPath, 'taispider')),
Item: require(path.join(libPath, 'item')),
ItemLoader: require(path.join(libPath, 'item-loader')),
urljoin: require(path.join(libPath, 'util/urljoin')),
types: require(path.join(libPath, 'types')),
};
/*
Export the version
*/
exports.version = require('./package').version;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/wx-rdc/tai-spider.git
git@gitee.com:wx-rdc/tai-spider.git
wx-rdc
tai-spider
tai-spider
main

搜索帮助