Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hrt

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hrt

HTTP Rewrite Tool for Frontend

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
77
increased by120%
Maintainers
1
Weekly downloads
 
Created
Source

HTTP Rewrite Tool

HRT 是前端代理工具,根据配置把指定的URL指向到本地或其它URL。

安装

  1. 源代码安装

    git clone git://github.com/tudouui/hrt.git
    
  2. NPM安装

    npm install hrt -g
    

使用方法

  1. 修改浏览器代理设置,IP: 127.0.0.1 ,端口: 2222

  2. 创建配置文件 ./config/my.js ,添加跳转规则。

    指定单个文件。

    var root = 'D:\\Projects\\static-trunk';
    exports.map = [
    	['http://js.tudouui.com/js/lib/tuilib2.js', root + '/js/lib/tuilib2_combo.js']
    ];
    

    也可以把整个目录指向到本地。

    var root = 'D:\\Projects\\static-trunk';
    exports.map = [
    	['http://js.tudouui.com/js/lib', root + '/js/lib']
    ];
    

    替换部分URL。

    exports.map = [
    	['/dist/', '/src/']
    ];
    
  3. 在命令行输入 hrt ,启动HTTP服务。

    hrt --config=./config/my.js
    hrt --config=./config/my.js --port=8080
    hrt --config=./config/my.js --debug=true
    

Keywords

FAQs

Package last updated on 07 Jan 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc