You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
xiaojunnuo 04cd99b931
fix: 修复升级后没有完全退出的问题
4 years ago
doc refactor: 添加下载地址 4 years ago
packages fix: 修复升级后没有完全退出的问题 4 years ago
test refactor: 1.0.2 4 years ago
.gitignore init 4 years ago
LICENSE init 4 years ago
README.md refactor: 添加gitee github徽章 4 years ago
lerna.json v1.1.0 4 years ago
package-lock.json feat: 设置界面 4 years ago
package.json refactor: 添加gitee github徽章 4 years ago
yarn-error.log init 4 years ago
yarn.lock init 4 years ago

README.md

dev-sidecar

开发者边车命名取自service-mesh的service-sidecar意为为开发者打辅助的边车工具
通过本地代理的方式将http请求代理到一些国内的加速通道上
不用ss小飞机也能解决一些网站和库无法访问或访问速度慢的问题

特性

1、 github的release、source、zip下载加速

可解决npm install 时某些安装包下载不下来的问题

2、 dns优选

根据网络状况智能解析域名ip地址获取最佳网络速度 比如:

  1. 解决git push 偶尔失败需要输入账号密码的问题fatal: TaskCanceledException encountered
  2. 解决github头像加载不出来的问题
  3. 解决gist.github.com访问不到的问题

3、 github的源代码查看raw/blame查看

通过跳转到国内加速链接上

4、 Stack Overflow 加速

将ajax.google.com代理到加速CDN上 recaptcha 图片验证码加速

5、 google cdn 加速

通过代理到加速链接上

6、 更多加速配置

等你来提issue

快速开始

目前仅支持windows

1、 DevSidecar桌面应用发布啦

暂时只支持windows

1.1 下载安装包

点此去下载
安装后打开:

1.2 安装根证书

第一次打开会提示安装根证书

1.3 开始加速吧

去试试打开github
Download ZIPRelease 下载试试,体验秒下的感觉
比如去下载它: https://github.com/greper/d2-crud-plus/archive/master.zip

开启前vs 开启后

最佳实践

把dev-sidecar一直开着就行了
建议遇到打开比较慢的国外网站可以优先尝试将该域名添加到dns设置中注意被GFW封杀的无效
如果还访问不了就需要寻找镜像cdn进行拦截代理

npm加速

  1. yarn 设置淘宝镜像registry
  2. npm设置官方registry。
  3. 项目install使用yarn发布包publish用npm互不影响
  4. 某些库用cnpm也下载不下来的话可以试试打开dev-sidecar的npm加速

其他加速

  1. git clone 加速

使用方式用实际的名称替换{}的内容即可加速clone
https://hub.fastgit.org/{username}/{reponame}.git
clone 出来的 remote "origin" 为fastgit的地址需要手动改回来
你也可以直接使用他们的clone加速工具 fgit-go

  1. github.com的镜像网站(注意:不能登录)
  1. hub.fastgit.org
  2. github.com.cnpmjs.org 这个很容易超限

api

拦截配置

没有配置域名的不会拦截,其他根据配置进行拦截处理

const intercepts = {
  // 要拦截的域名
  'github.com': {
     //需要拦截url的正则表达式
     '/.*/.*/releases/download/': {
        //拦截类型
        // redirect:url,  临时重定向(url会变一些下载资源可以通过此方式配置)
        // proxy:url,     代理url不会变没有跨域问题
        // abort:true,    取消请求适用于被GFW封锁的资源找不到替代直接取消请求快速失败节省时间
        redirect: 'download.fastgit.org'
      },
   },
   'ajax.googleapis.com': {
     '.*': {
       proxy: 'ajax.loli.net', //代理请求url不会变
       backup: ['ajax.proxy.ustclug.org'],
       test: 'ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js'
     }
   },
   'clients*.google.com': {
      '.*':{
        abort: true //取消请求被GFW封锁的资源找不到替代直接取消请求快速失败节省时间
      }
    }       
}

DNS优选

某些域名比如api.github.com会被解析到新加坡的ip上新加坡的服务器在上午挺好到了晚上就卡死基本不可用。
所以将这些域名解析到美国服务器上就可以正常访问

另外配置了dns mapping的域名将会从dns获取到的ip列表中选择相对快一点的服务器进行访问

 dns: {
    mapping: {
      //
      'api.github.com': 'usa', // "解决push的时候需要输入密码的问题",
      'gist.github.com': 'usa' // 解决gist无法访问的问题
      "*.githubusercontent.com": "usa" // 解决github头像经常下载不到的问题
    }
  },

注意暂时只支持IPv4的解析

感谢

本项目使用lerna包管理工具

lerna

本项目参考如下开源项目

本项目加速资源由如下组织提供