Skip to content

Latest commit

 

History

History
88 lines (61 loc) · 1.12 KB

SETUP.md

File metadata and controls

88 lines (61 loc) · 1.12 KB

setup

How to setup:

requirements

requirements:

  • nodejs >= v21.7.2
  • bun >= v1.1.37
  • fnm >= v1.37.1
  • zip >= v3.0

OS: (Windows/macOS/Linux)

windows

macOS (Homebrew)

# updates homebrew
brew update

# installs nodejs and zip via homebrew
brew install node
brew install zip
brew install fnm

# installs bun via npm
npm i -g bun

linux (Arch)

paru -S nodejs npm zip fnm
npm i -g bun
curl -fsSL https://fnm.vercel.app/install | bash

building

clone repo

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

install dependencies

bun i

select correct node version

fnm use

to run in dev mode go to extensions > manage extensions > enable developer mode then click load unpacked and choose the dist folder

bun d

to build

bun build-chrome
bun build-firefox

to package

bun package-chrome
bun package-firefox

Want to contribute?