nodejs静态文件服务器Anywhere使用帮助

Anywhere 是随启随用的静态文件服务器,它能随时随地将你的当前目录变成一个静态文件服务器的根目录。

安装

1
npm install anywhere -g

执行

切换到静态文件目录,输入以下命令测试:

1
2
3
4
5
6
7
8
9
10
11
$ 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

参考链接

  1. anywhere,by npmjs
  2. nodejs服务器Anywhere使用,by 一包.