Offline Installation
If you are behind a corporate proxy, and configuring your editor with the proxy settings doesn’t help, or you want to install wallaby.js to function in offline mode, you may follow the instructions below.
- Download wallaby version file from update.wallabyjs.com/wallaby.json.
- Follow the instructions for your code editor as described below.
(~
in the paths below is your OS user home folder)
Please Note: Our recommendation is to only install in offline mode if you have no other option. Offline mode does not receive automated updates and bug fixes.
VS Code
- open your VS Code settings.json file (
Preferences: Open User Settings (JSON)
) and add the"wallaby.noAutomaticInstall": true,
setting to it, - install the latest extension version via VS Code extensions mechanism,
- download the
https://wallaby-downloads.s3.amazonaws.com/wallaby-vNNN.zip
file, whereNNN
islatestServer[0]
value in the downloadedwallaby.json
file, - unzip the downloaded file to the
~/.vscode/extensions/WallabyJs.wallaby-vscode-VERSION/wallaby
folder, whereVERSION
is the version of the extension just installed, - open VS Code and start wallaby.js.
To update wallaby.js core in VS Code in future:
- download trusted core version from the
https://wallaby-downloads.s3.amazonaws.com/wallaby-vNNN.zip
URL, where NNN is the trusted version, - unzip the file to the
~/.vscode/extensions/WallabyJs.wallaby-vscode-LATEST/wallaby
folder.
JetBrains IDEs
First download and install the Wallaby-Intellij plugin to your offline computer from the JetBrains Marketplace. Then follow the instructions in JetBrains documentation to install the plugin from disk.
Transferring files from an previous online installation
The easiest way to install JetBrains IDEs to an offline computer is to first install to an online computer and then transfer your JetBrains wallaby files to the offline computer.
- After installing the Wallaby-Intellij plugin, run wallaby for a project on the online computer.
- Copy the
wallaby
directory from your editor’sSystem directory
from the online computer to the offline computer. The location of this folder differs by editor version and operating system version, refer to the JetBrains documentation to determine where theSystem directory
is located for your editor and operating system.
Installing from scratch
- Download the wallaby version file from https://update.wallabyjs.com/wallaby.json.
- Download the https://wallaby-downloads.s3.amazonaws.com/wallaby-vNNN.zip file, where NNN is latestServer[0] value in the downloaded wallaby.json file.
- Create a
wallaby
directory in your editor’sSystem directory
. The location of this folder differs by editor version and operating system version, refer to the JetBrains documentation to determine where theSystem directory
is located for your editor and operating system. - Unzip the downloaded wallaby core file from Step 2 to the
wallaby
folder specified in Step 3. You should now have a nestedwallaby/wallaby
directory in your editor’sSystem directory
. - Start your IDE and start Wallaby.
Sublime Text
- install the latest package version via Sublime Text package manager,
- open your Wallaby.sublime-settings file (
Preferences - Package Settings - Wallaby - Settings - User
) and add the"noAutomaticInstall": true,
setting to it, - download the
https://wallaby-downloads.s3.amazonaws.com/wallaby-vNNN.zip
file, whereNNN
islatestServer[0]
value in the downloadedwallaby.json
file, - unzip it to the
Packages/Wallaby/wallaby
folder (you may use theBrowse Packages
command to open thePackages
folder), - start wallaby.js.
To update wallaby.js core in Sublime Text in future:
- download trusted core version from the
https://wallaby-downloads.s3.amazonaws.com/wallaby-vNNN.zip
, where NNN is the trusted version, - unzip the file to
Packages/Wallaby/wallaby
.
Visual Studio
First download and install the Wallaby Visual Studio plugin to your offline computer from https://wallabyjs.com/download/.
Transferring files from an previous online installation
The easiest way to install to an offline computer is to first install to an online computer and then transfer the Visual Studio Plugin files files to the offline computer.
- After installing the Wallaby Visual Studio plugin, run wallaby for a project on the online computer.
- If using a Windows environment, copy your
%USERPROFILE%\.wallaby
directory from the online computer to the offline computer.
Installing from scratch
- Download the wallaby version file from https://update.wallabyjs.com/wallaby.json.
- Download the https://wallaby-downloads.s3.amazonaws.com/wallaby-vNNN.zip file, where NNN is latestServer[0] value in the downloaded wallaby.json file.
- Extract the wallaby version to
%USERPROFILE%\.wallaby
directory. You should now have a nested%USERPROFILE%\wallaby\wallaby
directory. - Rename the extracted folder from
%USERPROFILE%\.wallaby\wallaby
to%USERPROFILE%\.wallaby\core
. - Start your IDE and start Wallaby.
Standalone Mode
Offline mode is not supported in Standalone mode. Wallaby Standalone mode requires an active internet connection to function.