nodejs+http-server简单代码实现一个node服务器

  http-server -a localhost -p 8003 --cors=http://localhost:8080/

这将使用端口’ 8003 ‘在地址localhost下启动服务器。cors参数将允许运行在端口’ 8080 '的应用程序访问这个本地运行的服务器的数据。

你可能感兴趣的:(http,服务器,node.js)