The Outline Client is a cross-platform VPN or proxy client for Windows, macOS, iOS, Android, and Debian-based Linux. The Outline Client is designed for use with the Outline Server software, but it is fully compatible with any Shadowsocks server.
The client's user interface is implemented in Polymer 2.0. Platform support is provided by Cordova and Electron, with additional native components in this repository.
All builds require Node 18 (lts/hydrogen), and Go 1.21 installed in addition to other per-platform requirements.
💡 NOTE: if you have
nvm
installed, runnvm use
to switch to the correct node version!
After cloning this repo, install all node dependencies:
npm install
Outline clients share the same web app across all platforms. This code is located in the src/www directory. If you are making changes to the shared web app and do not need to test platform-specific functionality, you can test in a desktop browser by running:
npm run action client/src/www/start
The latter command will open a browser instance running the app. Browser platform development will use fake servers to test successful and unsuccessful connections.
The app logic is located in src/www/app. UI components are located in src/www/ui_components. If you want to work specifically on an individual UI element, try the storybook!:
npm run action storybook
Note
Every script in this repository can be run with npm run action
-
for a CLI-like experience, add something like
alias outline="npm run action"
(you can call it whatever you like)
to your shell, then try outline www/start
!
Certain actions take configuration flags - but since we're running them through npm
, you'll have to use the --
seperator to funnel them through to the underlying process. For example, to set up a MacOS project in release mode, you'd run:
SENTRY_DSN=<your sentry dsn> npm run action client/src/cordova/setup macos -- --buildMode=release --versionName=<your version name>
How does the Outline Client work?
Looking for instructions on how to accept a server invite?
Each platform is handled differently:
- Developing for Apple (MacOS and iOS)
- Developing for Android
- Developing for Electron (Windows and Linux)
To enable error reporting through Sentry for local builds, run:
export SENTRY_DSN=[Sentry development API key]
[platform-specific build command]
Release builds on CI are configured with a production Sentry API key.