
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
fdir-server
Advanced tools
基于 HTTP 协议实现的文件服务器,支持目录浏览和文件预览。
npm install -g fdir-server
安装后,可以在任意目录运行:
fdir [port] [directory]
| 参数 | 说明 | 默认值 |
|---|---|---|
port | 服务器端口 | 8080 |
directory | 要服务的目录 | 当前目录 |
# 在当前目录启动服务器,使用默认端口 8080
fdir
# 指定端口为 3000
fdir 3000
# 指定服务目录和端口
fdir 3000 /path/to/your/files
# 同时指定端口和目录
fdir 8080 ./public
import Server from 'fdir-server';
const server = new Server(8080, './public');
server.start();
启动后,在浏览器中访问:
http://localhost:<port>/
# 安装依赖
npm install
# 构建项目
npm run build
# 开发模式运行
npm run dev
# 运行 lint
npm run lint
npm run lint:fix
# 格式化代码
npm run fmt
npm run fmt:check
ISC
FAQs
基于 HTTP 协议实现的文件服务器,支持目录浏览和文件预览
We found that fdir-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.