1.0.1 • Published 3 years ago
cloudflare-worker-request-data v1.0.1
cloudflare-worker-request-data
RequestData() function is written to parse user provided data from GET/POST requests in Cloudflare Worker
Example
import { RequestData } from 'cloudflare-worker-request-data';
export default {
async fetch(request, env, ctx) {
const data = await RequestData(request)
// do something with the data
}
};Description
RequestData(request) in the above example can get return of
- a
Stringin case of "application/text" or "text/html" - a
Objectin case of "application/json", "application/x-www-form-urlencoded", "mutipart/form-data" - a
Stringwhich is empty if nothing parsed
The request shall be either in GET or POST, other methods of request will directly return you with an empty String.
License
MIT