An open API service indexing awesome lists of open source software.

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

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:12345

or with a custom port
```
quickserve myfile 8181
```
myfile will be served on http://localhost:8181