Node.js quick file server (static files over HTTP)

前端 未结 30 2197
攒了一身酷
攒了一身酷 2020-11-22 12:30

Is there Node.js ready-to-use tool (installed with npm), that would help me expose folder content as file server over HTTP.

Example, if I have



        
30条回答
  •  孤独总比滥情好
    2020-11-22 13:03

    I know it's not Node, but I've used Python's SimpleHTTPServer:

    python -m SimpleHTTPServer [port]
    

    It works well and comes with Python.

提交回复
热议问题