# Install http-server module globally
npm install http-server -g
# Navigate to any directory you want the server to run in
cd /path/to/dir/with/files
# Launch HTTP server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"", | |
"Asia/Pacific Region", | |
"Europe", | |
"Andorra", | |
"United Arab Emirates", | |
"Afghanistan", | |
"Antigua and Barbuda", | |
"Anguilla", | |
"Albania", | |
"Armenia", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# git | |
alias g="git" | |
alias gs="git status" | |
alias ga="git add ." | |
alias gc="git commit -m" | |
alias gn="git init && git add . && git commit -m \"init\"" | |
# laravel | |
alias pa="php artisan" | |
alias l="php artisan serve" |
OlderNewer