Skip to content

High performance HTTP proxy originally written by your friends at Lantern and now maintained by a stellar group of volunteer open source programmers.

License

Notifications You must be signed in to change notification settings

bvn13/LittleProxy

 
 

Repository files navigation

Build Status

LittleProxy is a high performance HTTP proxy written in Java atop Trustin Lee's excellent Netty event-based networking library. It's quite stable, performs well, and is easy to integrate into your projects.

One option is to clone LittleProxy and run it from the command line. This is as simple as:

$ git clone git://github.com/adamfisk/LittleProxy.git
$ cd LittleProxy
$ ./run.bash

You can embed LittleProxy in your own projects through maven with the following:

    <dependency>
        <groupId>org.littleshoot</groupId>
        <artifactId>littleproxy</artifactId>
        <version>1.0.0-beta1</version>
    </dependency>

Once you've included LittleProxy, you can start the server with the following:

HttpProxyServer server =
    DefaultHttpProxyServer.bootstrap()
        .withPort(8080)
        .start();

There are lots of filters and such you can also add to LittleProxy. You can add request and response filters using an HttpFiltersSource(Adapter), for example:

HttpProxyServer server =
    DefaultHttpProxyServer.bootstrap()
        .withPort(8080)
        .withFiltersSource(new HttpFiltersSourceAdapter() {
            public HttpFilters filterRequest(HttpRequest originalRequest) {
                // Check the originalRequest to see if we want to filter it
                boolean wantToFilterRequest = ...;
                
                if (!wantToFilterRequest) {
                    return null;
                } else {
                    return new HttpFiltersAdapter(originalRequest) {
                        @Override
                        public HttpResponse requestPre(HttpObject httpObject) {
                            // TODO: implement your filtering here
                            return null;
                        }
                    
                        @Override
                        public HttpResponse requestPost(HttpObject httpObject) {
                            // TODO: implement your filtering here
                            return null;
                        }
                    
                        @Override
                        public void responsePre(HttpObject httpObject) {
                            // TODO: implement your filtering here
                        }
                    
                        @Override
                        public void responsePost(HttpObject httpObject) {
                            // TODO: implement your filtering here
                        }   
                    };
                }
            }
        });
        .start();

If you want to create additional proxy servers with similar configuration but listening on different ports, you can clone an existing server. The cloned servers will share event loops to reduce resource usage and when one clone is stopped, all are stopped.

existingServer.clone().withPort(8081).start()

If you have questions, please visit our Google Group here:

https://groups.google.com/forum/#!forum/littleproxy

Project reports, including the [API Documentation] (http://littleproxy.org/apidocs/index.html), can be found here:

http://littleproxy.org

Benchmarking instructions and results can be found here.

Acknowledgments

Many thanks to The Measurement Factory for the use of Co-Advisor for HTTP standards compliance testing.

About

High performance HTTP proxy originally written by your friends at Lantern and now maintained by a stellar group of volunteer open source programmers.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 44.0%
  • HTML 33.4%
  • Java 22.4%
  • Other 0.2%