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

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

    Here's another simple web server.

    https://www.npmjs.com/package/hostr

    Install

    npm install -g hostr
    

    Change working director

    cd myprojectfolder/
    

    And start

    hostr
    

提交回复
热议问题