# AnyWhere

AnyWhere 是一款随启随用的静态文件服务器,可以随时随地将你的当前目录变成一个静态文件服务器的根目录

# 安装
npm install anywhere -g

# 使用
$ anywhere
#  or with port
$ anywhere -p 8000
#  or start it but silent(don't open browser)
$ anywhere -s
#  or with hostname
$ anywhere -h localhost -p 8888
#  or with folder
$ anywhere -d ~/git/anywhere
#  or enable html5 history
$ anywhere -f /index.html

# 执行命令后,默认浏览器将为您自动打开主页。
# http://localhost:8000
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18