登录 注册
当前位置:主页 > 资源下载 > 15 > node-ecstatic是一款中间件,适用于作为静态文件服务器与核心http、express或CLI搭配使用

node-ecstatic是一款中间件,适用于作为静态文件服务器与核心http、express或CLI搭配使用

  • 更新:2024-11-27 10:59:50
  • 大小:326KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

此项目是未维护和已弃用的 请使用其他东西。 参见: : 欣喜若狂 一个简单的静态文件服务器中间件。 与原始http服务器,快速连接/连接或在CLI上一起使用它! 例子: 快递4.x 'use strict' ; const express = require ( 'express' ) ; const ecstatic = require ( '../lib/ecstatic' ) ; const http = require ( 'http' ) ; const app = express ( ) ; app . use ( ecstatic ( { root : ` ${ __dirname } /public` , showdir : true , } ) ) ; http . createServer ( app ) . listen ( 8080 ) ; cons