mirror of
https://github.com/tappollo/WWDC.git
synced 2026-04-27 17:35:18 +08:00
13 lines
317 B
Bash
Executable File
13 lines
317 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if ! type "npm" > /dev/null; then
|
|
echo "NPM is not installed, installing...\n"
|
|
curl -L https://www.npmjs.com/install.sh | sh
|
|
fi
|
|
|
|
if ! type "http-server" > /dev/null; then
|
|
echo "http-server module is not installed, installing...\n"
|
|
npm install http-server -g
|
|
fi
|
|
|
|
http-server -p 9042 ./json_contingency |