https://github.com/kessler/node-quick-serve
quickly start an http download server and serve a single file or a directory from command line
https://github.com/kessler/node-quick-serve
Last synced: 22 days ago
JSON representation
quickly start an http download server and serve a single file or a directory from command line
- Host: GitHub
- URL: https://github.com/kessler/node-quick-serve
- Owner: kessler
- License: mit
- Created: 2014-03-18T10:43:31.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-12-10T16:03:49.000Z (over 6 years ago)
- Last Synced: 2025-04-04T03:31:52.538Z (28 days ago)
- Language: JavaScript
- Homepage:
- Size: 7.81 KB
- Stars: 19
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# quick serve
quickly start an http download server and serve a single file or a directory from command line```
npm install -g quick-serve
```
# usage
```
quickserve
```
serve current directory at http://localhost:12345```
quickserve myfile
```
myfile will be served on http://localhost:12345or with a custom port
```
quickserve myfile 8181
```
myfile will be served on http://localhost:8181