installation.md (611B)
1 --- 2 label: Installation 3 order: 740 4 --- 5 6 # Installation 7 8 !!!warning npm install is currently broken 9 The published npm package is discontinued and `npm install -g mojic` will fail with a 404. Use the "from source" method below. 10 !!! 11 12 ## From source (recommended, currently required) 13 14 ```bash 15 # Clone and navigate to the directory 16 git clone https://github.com/notamitgamer/mojic.git 17 cd mojic 18 19 # Install dependencies and link it globally to use the 'mojic' command 20 npm install 21 npm link 22 ``` 23 24 ## Via npm (currently broken) 25 26 ```bash 27 npm install -g mojic 28 ``` 29 30 Or without installing: 31 32 ```bash 33 npx mojic encode main.c 34 ```