Skip to content

Latest commit

 

History

History
70 lines (47 loc) · 800 Bytes

SETUP.md

File metadata and controls

70 lines (47 loc) · 800 Bytes

setup

How to setup:

requirements

requirements:

  • nodejs >= v21.7.2
  • bun >= v1.1.9
  • zip >= v3.0

OS: (Windows/macOS/Linux)

windows

macOS (Homebrew)

#updates homebrew
brew update

#installs nodejs and zip via homebrew
brew install node@20
brew install zip

#installs bun via npm
npm i -g bun

linux (Arch)

pacman -S nodejs npm zip
npm i -g bun

building

clone repo

git clone https://github.com/maxhu08/mtab
cd mtab

install dependencies

bun i

to build

bun build-chrome
bun build-firefox

to package

bun package-chrome
bun package-firefox

Want to contribute?