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

前端 未结 30 1854
攒了一身酷
攒了一身酷 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:18

    From npm@5.2.0, npm started installing a new binary alongside the usual npm called npx. So now, one liners to create static http server from current directory:

    npx serve
    

    or

    npx http-server
    

提交回复
热议问题