1.0.7 • Published 2 months ago

@develon/fs v1.0.7

Weekly downloads
4
License
MIT
Repository
github
Last release
2 months ago

FileBrowser

A Online File Browser By Node.js

install

git clone https://github.com/develon2015/FileBrowser.git
yarn install
yarn link

Or install from npm:

yarn global add @develon/fs

usage

fs
fs 80
fs 0.0.0.0 80

note: 使用Cloudflare Workers建立API

/**
 * 获取客户端IP地址
 */

/** getClientIP() */
const getClientIP = request => request.headers.get("CF-Connecting-IP");

addEventListener('fetch', event => {
  event.respondWith(handleRequest(event.request));
});

async function handleRequest(request) {
  return new Response(getClientIP(request), {status: 200});
}
1.0.7

2 months ago

1.0.6

2 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago